feat: add .env.example templates for development setup

- Create .env.example with database and API key placeholders
- Add backend/.env.example for backend development
- Add frontend/.env.example for Vite frontend config
- Add tests/env-example.spec.ts with 13 validation tests
- Verify .gitignore correctly ignores .env files
This commit is contained in:
2026-02-12 20:10:26 +01:00
parent 571ac97f00
commit 2609d156cb
4 changed files with 106 additions and 3 deletions

10
vitest.config.ts Normal file
View File

@@ -0,0 +1,10 @@
import { defineConfig } from 'vitest/config';
export default defineConfig({
test: {
globals: true,
environment: 'node',
testDir: 'tests',
include: ['**/*.spec.ts'],
},
});