Fixes #484 by adding MAILGUN_KEY variable to README instructions on setting up .env file, and by adding a default value to the docker-compose environment. (#487)

This commit is contained in:
Francis Li 2017-12-04 10:39:54 -08:00 committed by Cassie Tarakajian
parent 03eae2f1ef
commit c4df272b1c
2 changed files with 4 additions and 1 deletions

View File

@ -24,7 +24,9 @@ This project is currently in development! It will be announced when there is a (
S3_BUCKET=<your-s3-bucket>
GITHUB_ID=<your-github-client-id>
GITHUB_SECRET=<your-github-client-secret>
MAILGUN_KEY=<your-mailgun-api-key>
```
If you don't care about being able to upload media files to S3 or Login with Github, you can drop in the file exactly how it is. Or, if you don't want to do that, just ask me to send you mine. Refer to [this gist](https://gist.github.com/catarak/70c9301f0fd1ac2d6b58de03f61997e3) for creating an S3 bucket for testing, or if you don't want to do that, I can add you to one of my S3 buckets.
7. `$ npm run fetch-examples` - this downloads the example sketches into a user called 'p5'

View File

@ -16,6 +16,7 @@ services:
- S3_BUCKET=override_in_dotenv
- GITHUB_ID=override_in_dotenv
- GITHUB_SECRET=override_in_dotenv
- MAILGUN_KEY=override_in_dotenv
volumes:
- .:/opt/node/app
- /opt/node/app/node_modules