Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ This project uses [Python](http://nodejs.org), [Flask](https://npmjs.com), SQL,

Jumpstart expects the following environment variables to be defined:
```
FLASK_APP=jumpstart:App
FLASK_APP=jumpstart:app
JUMPSTART_API_KEYS=KEYS
TZ=TIMEZONE
SENTRY_DSN=LINK
SENTRY_DSN=LINK (could also be "")
```
## Docker

Expand All @@ -32,12 +32,12 @@ SENTRY_DSN=LINK
```
docker run \
-e FLASK_RUN_HOST=0.0.0.0 \
-e FLASK_APP=jumpstart:App \
-e FLASK_APP=jumpstart:app \
-e JUMPSTART_API_KEYS=KEYS \
-e TZ=America/New_York \
-e SENTRY_DSN=LINK \
-e GUNICORN_CMD_ARGS="-b=0.0.0.0:5000" \
-v ./secrets:/usr/local/jumpstart/secrets \
-p 5000:5000 \
jumpstart
```
```