initial commit
This commit is contained in:
commit
c6961c03c3
33 changed files with 1782 additions and 0 deletions
60
.gitignore
vendored
Normal file
60
.gitignore
vendored
Normal 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/
|
||||
Loading…
Add table
Add a link
Reference in a new issue