minor ergonomic updates to readme

This commit is contained in:
Nan Yu
2020-03-30 08:26:37 -07:00
committed by GitHub
parent 09dea295a2
commit 7da0d7589e

View File

@ -39,7 +39,7 @@ In development you can quickly get an environment running using Docker by follow
1. Fill out the following fields:
1. `SECRET_KEY` (follow instructions in the comments of `.env`)
1. `SLACK_KEY` (this is called "Client ID" in Slack admin)
1. `SLACK_SECRET`
1. `SLACK_SECRET` (this is called "Client Secret" in Slack admin)
1. Add `http://localhost:3000/auth/slack.callback` as an Oauth callback URL in Slack App settings
1. Run `make up`. This will download dependencies, build and launch a development version of Outline
@ -54,9 +54,9 @@ For a self-hosted production installation there is more flexibility, but these a
1. Build the web app with `yarn build:webpack` or `npm run build:webpack`
1. Using the `.env.sample` as a reference, set the required variables in your production environment. The following are required as a minimum:
1. `SECRET_KEY` (follow instructions in the comments of `.env`)
1. `SECRET_KEY` (follow instructions in the comments at the top of `.env`)
1. `SLACK_KEY` (this is called "Client ID" in Slack admin)
1. `SLACK_SECRET`
1. `SLACK_SECRET` (this is called "Client Secret" in Slack admin)
1. `DATABASE_URL` (run your own local copy of Postgres, or use a cloud service)
1. `REDIS_URL` (run your own local copy of Redis, or use a cloud service)
1. `URL` (the public facing URL of your installation)