Files
bugsink/.gitignore
Klaas van Schelven 334e04d133 Fix django_tailwind
I was missing package.json in git due to a too liberal .gitignore conf.
This botched tailwind when I restarted from a fresh git install

I never ran into this before b/c tailwind's npm stuff is only necessary during
development, not in e.g. localbugsink (because we checkin all outputs too)
2024-03-20 20:48:16 +01:00

26 lines
200 B
Plaintext

# Python
*.pyc
__pycache__
# Virtual Environments
.env
.venv
bin/
include/
lib/
lib64
pyvenv.cfg
share/
# sqlite
db.sqlite3
db.*.sqlite3
# vim
*.swo
*.swp
# node (tailwind)
node_modules
/package*