Initial commit: project scaffold
This commit is contained in:
53
.gitignore
vendored
Normal file
53
.gitignore
vendored
Normal file
@@ -0,0 +1,53 @@
|
|||||||
|
# ===============================
|
||||||
|
# Python
|
||||||
|
# ===============================
|
||||||
|
__pycache__/
|
||||||
|
*.py[cod]
|
||||||
|
*.pyo
|
||||||
|
*.pyd
|
||||||
|
|
||||||
|
# Virtual environments
|
||||||
|
.venv/
|
||||||
|
venv/
|
||||||
|
env/
|
||||||
|
ENV/
|
||||||
|
|
||||||
|
# ===============================
|
||||||
|
# PyCharm / JetBrains
|
||||||
|
# ===============================
|
||||||
|
.idea/
|
||||||
|
*.iml
|
||||||
|
|
||||||
|
# ===============================
|
||||||
|
# Logs & runtime
|
||||||
|
# ===============================
|
||||||
|
*.log
|
||||||
|
logs/
|
||||||
|
*.pid
|
||||||
|
|
||||||
|
# ===============================
|
||||||
|
# OS junk
|
||||||
|
# ===============================
|
||||||
|
.DS_Store
|
||||||
|
Thumbs.db
|
||||||
|
|
||||||
|
# ===============================
|
||||||
|
# Secrets / config
|
||||||
|
# ===============================
|
||||||
|
.env
|
||||||
|
.env.*
|
||||||
|
config.local.py
|
||||||
|
settings.local.py
|
||||||
|
|
||||||
|
# ===============================
|
||||||
|
# Backup / temp
|
||||||
|
# ===============================
|
||||||
|
*.bak
|
||||||
|
*.tmp
|
||||||
|
tmp/
|
||||||
|
cache/
|
||||||
|
|
||||||
|
# ===============================
|
||||||
|
# MySQL dumps / exports
|
||||||
|
# ===============================
|
||||||
|
*.sql
|
||||||
Reference in New Issue
Block a user