added gitignore file
This commit is contained in:
69
.gitignore
vendored
Normal file
69
.gitignore
vendored
Normal file
@@ -0,0 +1,69 @@
|
|||||||
|
# Specify filepatterns you want git to ignore.
|
||||||
|
|
||||||
|
# === Python ===
|
||||||
|
__pycache__/
|
||||||
|
*.py[cod]
|
||||||
|
*.pyo
|
||||||
|
*.pyd
|
||||||
|
*.so
|
||||||
|
|
||||||
|
# === Django ===
|
||||||
|
*.sqlite3
|
||||||
|
db.sqlite3
|
||||||
|
*.log
|
||||||
|
*.pot
|
||||||
|
*.pyc
|
||||||
|
local_settings.py
|
||||||
|
|
||||||
|
# === Environment ===
|
||||||
|
.env
|
||||||
|
.env.*
|
||||||
|
.venv/
|
||||||
|
venv/
|
||||||
|
env/
|
||||||
|
ENV/
|
||||||
|
|
||||||
|
# === Django Migrations ===
|
||||||
|
**/migrations/
|
||||||
|
!*/migrations/__init__.py
|
||||||
|
|
||||||
|
# === Static/Media (generated) ===
|
||||||
|
staticfiles/
|
||||||
|
static_root/
|
||||||
|
media/
|
||||||
|
media_root/
|
||||||
|
|
||||||
|
# === VSCode ===
|
||||||
|
.vscode/
|
||||||
|
|
||||||
|
# === PyCharm ===
|
||||||
|
.idea/
|
||||||
|
|
||||||
|
# === macOS ===
|
||||||
|
.DS_Store
|
||||||
|
|
||||||
|
# === Node (if Tailwind, Webpack, etc.) ===
|
||||||
|
node_modules/
|
||||||
|
build/
|
||||||
|
dist/
|
||||||
|
npm-debug.log
|
||||||
|
yarn-error.log
|
||||||
|
package-lock.json
|
||||||
|
.pnp.*
|
||||||
|
.pnp
|
||||||
|
|
||||||
|
# === Coverage/Testing ===
|
||||||
|
htmlcov/
|
||||||
|
coverage.xml
|
||||||
|
*.cover
|
||||||
|
*.py,cover
|
||||||
|
|
||||||
|
# === Others ===
|
||||||
|
*.bak
|
||||||
|
*.swp
|
||||||
|
*.tmp
|
||||||
|
|
||||||
|
*.sock
|
||||||
|
|
||||||
|
|
||||||
|
logs/
|
||||||
Reference in New Issue
Block a user