more files

This commit is contained in:
2026-02-06 17:14:38 +00:00
parent 5a8ec67a68
commit b772727f4a
4 changed files with 48 additions and 0 deletions

11
.dockerignore Normal file
View File

@@ -0,0 +1,11 @@
node_modules
dist
.env
.env.local
.git
.gitignore
tests
coverage
*.md
.eslintrc*
vitest.config.js

2
.env.example Normal file
View File

@@ -0,0 +1,2 @@
# Frontend Service Environment Variables
VITE_API_URL=http://localhost:3000

24
.gitignore vendored Normal file
View File

@@ -0,0 +1,24 @@
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
lerna-debug.log*
node_modules
dist
dist-ssr
*.local
# Editor directories and files
.vscode/*
!.vscode/extensions.json
.idea
.DS_Store
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?

11
vitest.config.js Normal file
View File

@@ -0,0 +1,11 @@
import { defineConfig } from 'vitest/config';
import react from '@vitejs/plugin-react';
export default defineConfig({
plugins: [react()],
test: {
environment: 'jsdom',
globals: true,
setupFiles: './tests/setup.js',
},
});