Merge pull request #18 from tldtest/README.md

documenting static files
This commit is contained in:
Arnold Dechamps 2024-03-29 23:45:39 +01:00 committed by GitHub
commit a91c651363
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -18,6 +18,13 @@ pip install -r requirements.txt
./manage.py runserver --insecure ./manage.py runserver --insecure
``` ```
# Static files :
The static files need to be hosted outside the gunicorn. So I choose to store them on github pages (for now). Which means that every time the statics get changed, one need to run :
```
./manage.py collectstatic
git add staticfiles/.
```
# CSS : # CSS :
To install the CSS bundler : To install the CSS bundler :
``` ```