From 1714a0f075dfc23a9bb675a6ed41fd54a3428e17 Mon Sep 17 00:00:00 2001 From: sichan Date: Wed, 29 May 2024 15:58:21 +0800 Subject: [PATCH] commit --- .gitignore | 131 +++++++++++++++++++++-------------------------------- 1 file changed, 51 insertions(+), 80 deletions(-) diff --git a/.gitignore b/.gitignore index b0ba627..72b7b19 100644 --- a/.gitignore +++ b/.gitignore @@ -1,53 +1,64 @@ *.pyc *.pyo -*.pyd -__pycache__/ *.db *.sqlite3 -*.sqlite +__pycache__/ 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/ +# Django media and static files +media/ +staticfiles/ -# Byte-compiled / optimized / DLL files +# virtualenv +venv/ +ENV/ +env/ +.virtualenv/ + +# Spyder project settings +.spyderproject +.spyproject + +# PyCharm +.idea/ +*.iml + +# Jupyter Notebook +.ipynb_checkpoints + +# VS Code +.vscode/ + +# Mac OS folder attributes +.DS_Store + +# Thumbnails +Thumbs.db + +# Windows files +ehthumbs.db +Desktop.ini + +# Python bytecode __pycache__/ *.py[cod] -# C extensions -*.so - -# Distribution / packaging -.Python -build/ -develop-eggs/ +# packages +*.egg +*.egg-info/ dist/ -downloads/ +build/ eggs/ -.eggs/ +parts/ +bin/ +var/ +sdist/ +develop-eggs/ +.installed.cfg lib/ lib64/ -parts/ -sdist/ -var/ -wheels/ -*.egg-info/ -.installed.cfg -*.egg - -# PyInstaller -# 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. -*.manifest -*.spec +wheelhouse/ # Installer logs pip-log.txt @@ -56,7 +67,6 @@ pip-delete-this-directory.txt # Unit test / coverage reports htmlcov/ .tox/ -.nox/ .coverage .coverage.* .cache @@ -73,7 +83,6 @@ coverage.xml # Django stuff: *.log local_settings.py -db.sqlite3-journal # Flask stuff: instance/ @@ -88,47 +97,9 @@ docs/_build/ # PyBuilder target/ -# Jupyter Notebook -.ipynb_checkpoints +# Backup files +*.bak -# pyenv -.python-version - -# celery beat schedule files -celerybeat-schedule -celerybeat.pid - -# SageMath parsed files -*.sage.py - -# dotenv -.env -.env.* - -# virtualenv -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 -cython_debug/ \ No newline at end of file +# Other files +*.csv +*.json \ No newline at end of file