178 lines
1.7 KiB
Text
178 lines
1.7 KiB
Text
# Django
|
|
*.log
|
|
*.pot
|
|
*.pyc
|
|
__pycache__/
|
|
local_settings.py
|
|
db.sqlite3
|
|
media/
|
|
|
|
# Virtual environment
|
|
venv/
|
|
env/
|
|
*.env
|
|
.env/
|
|
.venv/
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
|
|
# Node.js
|
|
node_modules/
|
|
|
|
# Static files
|
|
staticfiles/
|
|
|
|
# Database migrations (tùy chọn, nếu bạn không muốn commit migrations)
|
|
*/migrations/*.py
|
|
!*/migrations/__init__.py
|
|
|
|
# macOS
|
|
.DS_Store
|
|
|
|
# Windows
|
|
Thumbs.db
|
|
|
|
# PyCharm
|
|
.idea/
|
|
*.iml
|
|
|
|
# Vim
|
|
*.swp
|
|
*.swo
|
|
|
|
# Logs
|
|
logs/
|
|
*.log
|
|
|
|
# Coverage
|
|
.coverage
|
|
htmlcov/
|
|
|
|
# SASS
|
|
.sass-cache/
|
|
|
|
# Environment files
|
|
.env
|
|
.env.local
|
|
.env.development
|
|
.env.production
|
|
|
|
# PyInstaller
|
|
build/
|
|
dist/
|
|
*.spec
|
|
|
|
# Jupyter Notebook
|
|
.ipynb_checkpoints/
|
|
|
|
# VS Code
|
|
.vscode/
|
|
|
|
# pytest
|
|
.pytest_cache/
|
|
|
|
# SQLite
|
|
*.sqlite3
|
|
|
|
# Byte-compiled / optimized / DLL files
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
|
|
# Distribution / packaging
|
|
.Python
|
|
build/
|
|
develop-eggs/
|
|
dist/
|
|
downloads/
|
|
eggs/
|
|
.eggs/
|
|
lib/
|
|
lib64/
|
|
parts/
|
|
sdist/
|
|
var/
|
|
wheels/
|
|
*.egg-info/
|
|
.installed.cfg
|
|
*.egg
|
|
MANIFEST
|
|
|
|
# Unit test / coverage reports
|
|
htmlcov/
|
|
.tox/
|
|
.coverage
|
|
.coverage.*
|
|
.cache
|
|
nosetests.xml
|
|
coverage.xml
|
|
*.cover
|
|
.hypothesis/
|
|
.pytest_cache/
|
|
|
|
# Translations
|
|
*.mo
|
|
*.pot
|
|
|
|
# Flask stuff:
|
|
instance/
|
|
.webassets-cache
|
|
|
|
# Scrapy stuff:
|
|
.scrapy
|
|
|
|
# Sphinx documentation
|
|
docs/_build/
|
|
|
|
# PyBuilder
|
|
target/
|
|
|
|
# Jupyter Notebook
|
|
.ipynb_checkpoints
|
|
|
|
# IPython
|
|
profile_default/
|
|
ipython_config.py
|
|
|
|
# pyenv
|
|
.python-version
|
|
|
|
# pipenv
|
|
Pipfile.lock
|
|
|
|
# celery beat schedule file
|
|
celerybeat-schedule
|
|
|
|
# SageMath parsed files
|
|
*.sage.py
|
|
|
|
# Environments
|
|
.env
|
|
.venv
|
|
env/
|
|
venv/
|
|
ENV/
|
|
env.bak/
|
|
venv.bak/
|
|
|
|
# Spyder project settings
|
|
.spyderproject
|
|
.spyproject
|
|
|
|
# Rope project settings
|
|
.ropeproject
|
|
|
|
# mkdocs documentation
|
|
/site
|
|
|
|
# mypy
|
|
.mypy_cache/
|
|
.dmypy.json
|
|
dmypy.json
|
|
|
|
# Pyre type checker
|
|
.pyre/
|