update ignore
This commit is contained in:
parent
c7f0b9c91c
commit
f9c56ca215
136
.gitignore
vendored
136
.gitignore
vendored
@ -2,36 +2,128 @@
|
|||||||
__pycache__/
|
__pycache__/
|
||||||
*.py[cod]
|
*.py[cod]
|
||||||
*$py.class
|
*$py.class
|
||||||
|
**/__pycache__/
|
||||||
|
**/*.py[cod]
|
||||||
|
|
||||||
# Environments
|
# C extensions
|
||||||
|
*.so
|
||||||
|
|
||||||
|
# Virtual environment
|
||||||
.env
|
.env
|
||||||
venv/
|
.venv
|
||||||
env/
|
env/
|
||||||
*/.venv/
|
venv/
|
||||||
|
ENV/
|
||||||
|
env.bak/
|
||||||
|
venv.bak/
|
||||||
|
|
||||||
# Django specific
|
# pipenv
|
||||||
*.sqlite3
|
Pipfile.lock
|
||||||
*.sqlite3-journal
|
|
||||||
|
# Poetry
|
||||||
|
poetry.lock
|
||||||
|
|
||||||
|
# PyInstaller
|
||||||
|
*.manifest
|
||||||
|
*.spec
|
||||||
|
|
||||||
|
# Installer logs
|
||||||
|
pip-log.txt
|
||||||
|
pip-delete-this-directory.txt
|
||||||
|
|
||||||
|
# Unit test / coverage reports
|
||||||
|
htmlcov/
|
||||||
|
.tox/
|
||||||
|
.nox/
|
||||||
|
.coverage
|
||||||
|
.coverage.*
|
||||||
|
.cache
|
||||||
|
nosetests.xml
|
||||||
|
coverage.xml
|
||||||
|
*.cover
|
||||||
|
*.py,cover
|
||||||
|
.hypothesis/
|
||||||
|
.pytest_cache/
|
||||||
|
|
||||||
|
# Django stuff:
|
||||||
*.log
|
*.log
|
||||||
local_settings.py
|
local_settings.py
|
||||||
*/migrations/
|
db.sqlite3
|
||||||
|
db.sqlite3-journal
|
||||||
|
media/
|
||||||
|
staticfiles/
|
||||||
|
|
||||||
# Static and media files
|
# Translations
|
||||||
*/static/
|
*.mo
|
||||||
*/media/
|
|
||||||
|
|
||||||
# IDE specific
|
# Django migrations
|
||||||
|
**/migrations/*.pyc
|
||||||
|
**/migrations/__pycache__/
|
||||||
|
**/migrations/*.py
|
||||||
|
|
||||||
|
# PyCharm
|
||||||
.idea/
|
.idea/
|
||||||
*.iml
|
|
||||||
.vscode/
|
|
||||||
*.suo
|
|
||||||
*.ntvs*
|
|
||||||
*.njsproj
|
|
||||||
*.sln
|
|
||||||
*.swp
|
|
||||||
|
|
||||||
# OS and System files
|
# VS Code
|
||||||
.DS_Store
|
.vscode/
|
||||||
Thumbs.db
|
|
||||||
|
# MyPy
|
||||||
|
.mypy_cache/
|
||||||
|
.dmypy.json
|
||||||
|
dmypy.json
|
||||||
|
|
||||||
|
# Pyre type checker
|
||||||
|
.pyre/
|
||||||
|
|
||||||
|
# Profiles
|
||||||
|
.prof
|
||||||
|
|
||||||
|
# Backup files
|
||||||
|
*~
|
||||||
*.bak
|
*.bak
|
||||||
*.tmp
|
*.swp
|
||||||
|
*.swo
|
||||||
|
|
||||||
|
# macOS
|
||||||
|
.DS_Store
|
||||||
|
|
||||||
|
# Windows
|
||||||
|
Thumbs.db
|
||||||
|
ehthumbs.db
|
||||||
|
Desktop.ini
|
||||||
|
|
||||||
|
# dotenv environment variables
|
||||||
|
*.env
|
||||||
|
*.env.*
|
||||||
|
|
||||||
|
# coverage reports
|
||||||
|
*.lcov
|
||||||
|
|
||||||
|
# Docker
|
||||||
|
**/Dockerfile
|
||||||
|
**/docker-compose*.yml
|
||||||
|
|
||||||
|
# Build
|
||||||
|
build/
|
||||||
|
dist/
|
||||||
|
*.egg-info/
|
||||||
|
.eggs/
|
||||||
|
|
||||||
|
# If you use celery
|
||||||
|
celerybeat-schedule
|
||||||
|
celerybeat.pid
|
||||||
|
|
||||||
|
# If you use Sphinx
|
||||||
|
docs/_build/
|
||||||
|
|
||||||
|
# PyBuilder
|
||||||
|
target/
|
||||||
|
|
||||||
|
# Jupyter Notebook
|
||||||
|
.ipynb_checkpoints
|
||||||
|
|
||||||
|
# pyenv
|
||||||
|
.python-version
|
||||||
|
|
||||||
|
# Environments
|
||||||
|
.env/
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user