Skip to content

Commit 3912abe

Browse files
committed
Add missing environment variables
1 parent cf97fa7 commit 3912abe

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,16 +31,21 @@ dokku postgres:link rideshare-api rideshare-api
3131
### Add environment variables
3232

3333
- `DATABASE_URL` (set automatically by `postgres:link`)
34+
- `GAS_PRICE_ENDPOINT`: fetched to determine daily gas prices
35+
- `GUARDIAN_SECRET`, `PERSON_GUARDIAN_SECRET`: use `mix phx.gen.secret` to generate
3436
- `MAILGUN_DOMAIN`, `MAILGUN_KEY`: to send transactional email (ride reports, calendar links, warnings)
3537
- `ORIGIN_HOST`: domain application will be served at
3638
- `SECRET_KEY_BASE`: use `mix phx.gen.secret` to generate
3739
- `SENTRY_DSN`: for error-monitoring
3840

3941
```bash
4042
dokku config:set rideshare-api \
43+
GAS_PRICE_ENDPOINT= \
44+
GUARDIAN_SECRET= \
4145
MAILGUN_DOMAIN= \
4246
MAILGUN_KEY= \
4347
ORIGIN_HOST= \
48+
PERSON_GUARDIAN_SECRET= \
4449
SECRET_KEY_BASE= \
4550
SENTRY_DSN=
4651
```

0 commit comments

Comments
 (0)