- Add comprehensive documentation in docs/ (architecture, features, roadmap) - Add german-app-frontend with Vite, TypeScript, ESLint configuration - Add AGENTS.md and .gitignore Generated by Mistral Vibe. Co-Authored-By: Mistral Vibe <vibe@mistral.ai>
30 lines
No EOL
267 B
Text
30 lines
No EOL
267 B
Text
# Create .gitignore (if not already present)
|
|
echo "# Dependencies
|
|
node_modules/
|
|
dist/
|
|
build/
|
|
*.log
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Backend
|
|
bin/
|
|
obj/
|
|
*.user
|
|
*.suo
|
|
*.cache
|
|
|
|
# Frontend
|
|
.coverage
|
|
" > .gitignore |