first commit

This commit is contained in:
2025-08-01 06:05:06 +02:00
commit e2c546527f
44 changed files with 11845 additions and 0 deletions

56
backend/.gitignore vendored Normal file
View File

@@ -0,0 +1,56 @@
# Environment variables
.env
.env.*
!example.env
# Database files
*.sqlite
*.sqlite3
*.db
# Python bytecode
__pycache__/
*.py[cod]
*$py.class
# Virtual environments
venv/
.venv/
env/
ENV/
# Distribution / packaging
dist/
build/
*.egg-info/
*.egg
# Unit test / coverage reports
htmlcov/
.tox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*.cover
.hypothesis/
.pytest_cache/
# Jupyter Notebook
.ipynb_checkpoints
# mypy
.mypy_cache/
.dmypy.json
dmypy.json
# Logs
*.log
logs/
# IDE specific files
.idea/
.vscode/
*.swp
*.swo