Add instructions to start a dev server

This commit is contained in:
Jonas Schäfer
2020-02-29 12:40:43 +01:00
parent 88eb884a3e
commit 90273960d3

View File

@@ -1,3 +1,12 @@
# Snikket Web Portal
Nothing to see here (yet!). Move along.
## Start the dev server
```console
$ direnv allow
$ mkdir .local
$ cp web_config.example.py .local/web_config.py
$ $EDITOR .local/web_config.py # to adapt the configuration to your needs
$ pip install -r requirements.txt
$ quart run
```