Initial Commit
This commit is contained in:
76
.gitignore
vendored
Normal file
76
.gitignore
vendored
Normal file
@@ -0,0 +1,76 @@
|
||||
# ----------------------------
|
||||
# Python / Flask .gitignore
|
||||
# ----------------------------
|
||||
|
||||
# Byte-compiled / optimized / DLL files
|
||||
__pycache__/
|
||||
*.py[cod]
|
||||
*$py.class
|
||||
|
||||
# Virtual environments
|
||||
venv/
|
||||
env/
|
||||
.venv/
|
||||
.env/
|
||||
.venv*/
|
||||
env.*/
|
||||
venv.*/
|
||||
|
||||
# Environment & secrets
|
||||
*.env
|
||||
.env.*
|
||||
.envrc
|
||||
*.pem
|
||||
*.key
|
||||
|
||||
# Flask instance folder (per-app config, uploads, etc.)
|
||||
instance/
|
||||
*.sqlite
|
||||
*.sqlite3
|
||||
*.db
|
||||
|
||||
# Logs
|
||||
logs/
|
||||
*.log
|
||||
*.out
|
||||
*.err
|
||||
|
||||
# PyTest / coverage
|
||||
.pytest_cache/
|
||||
.coverage
|
||||
.coverage.*
|
||||
htmlcov/
|
||||
|
||||
# MyPy / type checking
|
||||
.mypy_cache/
|
||||
.dmypy.json
|
||||
dmypy.json
|
||||
|
||||
# C extensions
|
||||
*.so
|
||||
|
||||
# Distribution / packaging
|
||||
build/
|
||||
dist/
|
||||
*.egg-info/
|
||||
.eggs/
|
||||
|
||||
# Jupyter
|
||||
.ipynb_checkpoints/
|
||||
|
||||
# OS metadata
|
||||
.DS_Store
|
||||
Thumbs.db
|
||||
|
||||
# IDE / Editor
|
||||
.vscode/
|
||||
.idea/
|
||||
*.code-workspace
|
||||
|
||||
# Werkzeug debug pin file
|
||||
*.pid
|
||||
|
||||
# Cached static builds (if you do asset builds)
|
||||
node_modules/
|
||||
*.map
|
||||
|
||||
Reference in New Issue
Block a user