initial commit

This commit is contained in:
straitz 2025-08-15 00:46:18 +09:00
commit c6961c03c3
33 changed files with 1782 additions and 0 deletions

60
.gitignore vendored Normal file
View file

@ -0,0 +1,60 @@
# Python
__pycache__/
*/__pycache__
*.py[cod]
*pyc
*.pyo
*.pyd
*.so
*.egg-info/
*.egg
*.log
# Environments
.env
.env.*
venv/
venv*/
ENV/
.envrc
# Django
*.sqlite3
db.sqlite3
media/
staticfiles/
*.pot
*.pyc
# Migrations (если хочешь игнорировать сгенерированные миграции)
# migrations/
# */migrations/
# IDEs
.vscode/
.idea/
*.swp
# OS
.DS_Store
Thumbs.db
# Tests
.coverage
htmlcov/
*.cover
*.py,cover
.cache/
.tox/
# Git
*.orig
# Docker
*.pid
*.pid.lock
docker-compose.override.yml
# Build
dist/
build/