mirror of
https://github.com/bugsink/bugsink.git
synced 2026-01-06 05:10:15 -06:00
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.
49 lines
504 B
Plaintext
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
|