mirror of
https://github.com/jlengrand/bugsink.git
synced 2026-03-10 08:01:17 +00:00
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)
26 lines
200 B
Plaintext
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*
|