Minor readme updates

This commit is contained in:
j3s 2020-05-11 20:15:11 -05:00 committed by forest
parent d7ddf37cfa
commit 22520fe984
1 changed files with 8 additions and 1 deletions

View File

@ -17,6 +17,7 @@ Create python virtual environment and install packages
```
python3 -m venv .venv
source .venv/bin/activate
pip install --upgrade pip wheel
pip install -r requirements.txt
```
@ -26,6 +27,12 @@ Run an instance of Postgres (I used docker for this, you can use whatever you wa
docker run --rm -it -e POSTGRES_PASSWORD=dev -p 5432:5432 postgres
```
Modify the default email settings
```
nano capsulflask/__init__.py
```
Run the app
```