Initial setup of frontend and backend

This commit is contained in:
Julian Tabel
2026-02-04 17:13:58 +01:00
parent 259c200d93
commit 6ee53a0533
72 changed files with 5687 additions and 0 deletions

64
.gitignore vendored Normal file
View File

@@ -0,0 +1,64 @@
# Dependencies
node_modules/
__pycache__/
*.py[cod]
*$py.class
*.egg-info/
.venv/
venv/
# Build outputs
dist/
build/
out/
# Environment and secrets
.env
.env.*
!.env.example
*.pem
*.key
*.crt
credentials.json
secrets.json
*.secret
# Database
*.db
*.sqlite
*.sqlite3
# Logs
logs/
*.log
# OS files
.DS_Store
Thumbs.db
ehthumbs.db
Desktop.ini
# Editor/IDE
.idea/
.vscode/
*.swp
*.swo
*~
*.sublime-workspace
*.sublime-project
# Test coverage
coverage/
.nyc_output/
.pytest_cache/
htmlcov/
.coverage
# Temporary files
tmp/
temp/
*.tmp
*.temp
# Local config overrides
*.local