Compare commits

...

5 Commits

5 changed files with 13 additions and 3 deletions

3
.gitignore vendored
View File

@ -5,3 +5,6 @@ venv/
node_modules/
*.egg-info/
*.egg
db.sqlite3
instance/settings/settings.py

View File

@ -62,8 +62,8 @@ pip install -r requirements.txt
```
### Configuration
You must write a settings.py file in the `instance` directory (you can just
copy and paste `instance/sample_settings.py`. There still is configuration
You must write a settings.py file in the `instance/settings` directory (you can just
copy and paste `instance/settings/sample.py`. There still is configuration
required in this file, check it in for more info.

View File

@ -40,3 +40,9 @@ LOGGING = {
},
},
}
CACHES = {
"default": {
"BACKEND": "django.core.cache.backends.locmem.LocMemCache",
}
}

View File

@ -10,6 +10,7 @@ For Django settings see:
https://docs.djangoproject.com/en/3.1/topics/settings/
https://docs.djangoproject.com/en/3.1/ref/settings/
"""
from django.utils import timezone
from zoneinfo import ZoneInfo
from .prod import *

View File

@ -17,5 +17,5 @@ dateutils~=0.6
mutagen~=1.45
Pillow~=9.0
psutil~=5.9
PyYAML==5.4
PyYAML==6.0.1
watchdog~=2.1