Files
bugsink/.gitignore
Klaas van Schelven 0f0a4f996c DDD: whitenoise
Why?

> One is that WhiteNoise is designed to work in situations where Apache, nginx
> and the like aren’t easily available. But more importantly, it’s easy to
> underestimate what’s involved in serving static files correctly

We deal with both these situations:

* for local development, we recommend running with DEBUG=False and still want to
  sever staticfiles

* for deploying using nginx/whatever, I'd like to keep my instructions as simple
  as possible, and doing this right once (in whitenoise) saves us from having to
  come up with the right instructions for a bunch of webservers.
2024-05-16 10:31:59 +02:00

49 lines
504 B
Plaintext

# Python
*.pyc
__pycache__
# Virtual Environments / build
/.env
/.venv
/bin/
/include/
/lib/
/lib64
/pyvenv.cfg
/share/
/Bugsink.egg-info/
/bugsink/_version.py
/dist/
# sqlite
/db.sqlite3
/db.*.sqlite3
/test.sqlite3
/db.sqlite3-wal
/db.*.sqlite3-wal
/test.sqlite3-wal
/db.sqlite3-shm
/db.*.sqlite3-shm
/test.sqlite3-shm
/snappea.sqlite3
/snappea.sqlite3-shm
/snappea.sqlite3-wal
# vim
*.swo
*.swp
# node (tailwind)
node_modules
/package*
# conf
/bugsink_conf.py
# static files
/collectedstatic