Initial commit

This commit is contained in:
sandy
2026-04-01 03:20:54 +02:00
commit d68d476482
80 changed files with 9464 additions and 0 deletions

47
.gitignore vendored Normal file
View File

@@ -0,0 +1,47 @@
# Python
__pycache__/
*.py[cod]
*.pyo
*.pyd
.pytest_cache/
.mypy_cache/
.ruff_cache/
# Virtual environments
venv/
.venv/
env/
# Django
backend/db.sqlite3
backend/media/
backend/staticfiles/
# Packaging
*.egg-info/
dist/
build/
# Node / Svelte / Vite
frontend/node_modules/
frontend/.svelte-kit/
frontend/build/
frontend/dist/
frontend/.vite/
# Logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
# Environment files
.env
.env.*
!.env.example
# OS / editor
.DS_Store
Thumbs.db
.idea/
.vscode/