31 lines
479 B
Plaintext
31 lines
479 B
Plaintext
# --- Python and Django ---
|
|
*.py[cod]
|
|
__pycache__/
|
|
*.so
|
|
.Python
|
|
env/
|
|
venv/
|
|
staticfiles/
|
|
media/
|
|
|
|
# --- Databases (IMPORTANT for SQLite) ---
|
|
# We ignore the database so your local data doesn't overwrite your AWS data
|
|
db.sqlite3
|
|
db.sqlite3-journal
|
|
db.sqlite3-wal
|
|
db.sqlite3-shm
|
|
|
|
# --- Secrets and Environment ---
|
|
.env
|
|
.venv
|
|
env/
|
|
venv/
|
|
.secret_key
|
|
|
|
# --- Operating System ---
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# --- GeoIP ---
|
|
# If you download these manually on AWS, ignore them here
|
|
geoip/*.mmdb |