Compare commits
5 Commits
develop-1.
...
f426e21541
Author | SHA1 | Date | |
---|---|---|---|
f426e21541 | |||
5119ef5f44 | |||
48c5a1c9ce | |||
f482a5732f | |||
c40118978b |
3
.gitignore
vendored
3
.gitignore
vendored
@ -5,3 +5,6 @@ venv/
|
||||
node_modules/
|
||||
*.egg-info/
|
||||
*.egg
|
||||
|
||||
db.sqlite3
|
||||
instance/settings/settings.py
|
||||
|
@ -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.
|
||||
|
||||
|
||||
|
@ -40,3 +40,9 @@ LOGGING = {
|
||||
},
|
||||
},
|
||||
}
|
||||
|
||||
CACHES = {
|
||||
"default": {
|
||||
"BACKEND": "django.core.cache.backends.locmem.LocMemCache",
|
||||
}
|
||||
}
|
||||
|
@ -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 *
|
||||
|
||||
|
@ -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
|
||||
|
Reference in New Issue
Block a user