Add .gitignore to exclude cache, venv, and local files
This commit is contained in:
24
.gitignore
vendored
Normal file
24
.gitignore
vendored
Normal file
@@ -0,0 +1,24 @@
|
||||
# Python bytecode / cache
|
||||
__pycache__/
|
||||
*.py[cod]
|
||||
*.so
|
||||
|
||||
# Virtual environment
|
||||
venv/
|
||||
|
||||
# Local Unix domain sockets
|
||||
*.sock
|
||||
|
||||
# Environment & config files (if local only)
|
||||
*.env
|
||||
*.local.json
|
||||
system_info.json
|
||||
site_info.json
|
||||
frontend_config.json
|
||||
|
||||
# Logs
|
||||
*.log
|
||||
|
||||
# OS-specific
|
||||
.DS_Store
|
||||
Thumbs.db
|
||||
Reference in New Issue
Block a user