1
0
mirror of https://github.com/etesync/server synced 2025-02-20 12:22:00 +00:00

Updated Basic Setup Etebase (EteSync v2) (markdown)

Simon Vandevelde 2021-01-05 20:37:28 +01:00
parent e524a0448f
commit 48cb8139ae

@ -43,6 +43,8 @@ debug = false
;Advanced options, only uncomment if you know what you're doing:
;static_root = /path/to/static
;static_url = /static/
;media_root = /path/to/media
;media_url = /user-media/
;language_code = en-us
;time_zone = UTC
@ -53,6 +55,9 @@ allowed_host1 = *
engine = django.db.backends.sqlite3
name = db.sqlite3
```
If you require a custom path for the media or the db, make sure that you have the correct permissions for the paths.
## Set up ASGI server
Next, we set up an [ASGI server](https://asgi.readthedocs.io/en/latest/), which will serve as a way to interface with our application.