XH_Digital_Management/.gitignore

134 lines
1.6 KiB
Plaintext
Raw Normal View History

2024-05-29 15:57:21 +08:00
*.pyc
*.pyo
*.pyd
__pycache__/
*.db
*.sqlite3
*.sqlite
db.sqlite3
media/
# If you're using a virtualenv, you may want to include this:
# 注意:根据您的虚拟环境路径,可能需要调整下面的路径
.venv/
env/
ENV/
venv/
ENV/bin/
venv/include/
venv/lib/
venv/lib64/
2024-05-15 09:23:16 +08:00
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
# C extensions
*.so
# Distribution / packaging
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
*.egg-info/
.installed.cfg
*.egg
# PyInstaller
2024-05-29 15:57:21 +08:00
# Usually these files are written by a python script from a template before PyInstaller builds the exe, so as to inject date/other infos into it.
2024-05-15 09:23:16 +08:00
*.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
.hypothesis/
.pytest_cache/
# Translations
*.mo
*.pot
# Django stuff:
*.log
local_settings.py
db.sqlite3-journal
# Flask stuff:
instance/
.webassets-cache
# Scrapy stuff:
.scrapy
# Sphinx documentation
docs/_build/
# PyBuilder
target/
# Jupyter Notebook
.ipynb_checkpoints
# pyenv
2024-05-29 15:57:21 +08:00
.python-version
# celery beat schedule files
2024-05-15 09:23:16 +08:00
celerybeat-schedule
celerybeat.pid
# SageMath parsed files
*.sage.py
2024-05-29 15:57:21 +08:00
# dotenv
2024-05-15 09:23:16 +08:00
.env
2024-05-29 15:57:21 +08:00
.env.*
# virtualenv
2024-05-15 09:23:16 +08:00
venv/
ENV/
# Spyder project settings
.spyderproject
.spyproject
# Rope project settings
.ropeproject
# mkdocs documentation
/site
# mypy
.mypy_cache/
.dmypy.json
dmypy.json
# Pyre type checker
.pyre/
# pytype static type analyzer
.pytype/
# Cython debug symbols
2024-05-29 15:57:21 +08:00
cython_debug/