2017-12-19 03:59:29 +00:00
|
|
|
# Copy this file to .env, remove this comment and change the keys. For development
|
|
|
|
# with docker this should mostly work out of the box other than setting the Slack
|
|
|
|
# keys (for auth) and the SECRET_KEY.
|
2017-10-30 07:26:45 +00:00
|
|
|
#
|
2017-11-10 23:24:29 +00:00
|
|
|
# Please use `openssl rand -hex 32` to create SECRET_KEY
|
2019-05-31 03:27:01 +00:00
|
|
|
SECRET_KEY=generate_a_new_key
|
2020-01-24 02:38:50 +00:00
|
|
|
UTILS_SECRET=generate_a_new_key
|
2019-07-07 16:14:27 +00:00
|
|
|
|
2020-05-18 01:12:48 +00:00
|
|
|
DATABASE_URL=postgres://user:pass@localhost:5532/outline
|
|
|
|
DATABASE_URL_TEST=postgres://user:pass@localhost:5532/outline-test
|
|
|
|
REDIS_URL=redis://localhost:6479
|
2019-07-07 16:14:27 +00:00
|
|
|
|
2017-04-24 03:12:53 +00:00
|
|
|
URL=http://localhost:3000
|
2019-07-07 16:14:27 +00:00
|
|
|
PORT=3000
|
2019-09-21 19:23:47 +00:00
|
|
|
|
|
|
|
# enforce (auto redirect to) https in production, (optional) default is true.
|
|
|
|
# set to false if your SSL is terminated at a loadbalancer, for example
|
|
|
|
FORCE_HTTPS=true
|
2019-07-07 16:14:27 +00:00
|
|
|
|
2017-11-10 23:24:29 +00:00
|
|
|
ENABLE_UPDATES=true
|
2019-07-07 16:14:27 +00:00
|
|
|
DEBUG=cache,presenters,events
|
2017-12-19 03:59:29 +00:00
|
|
|
|
2018-05-29 05:32:36 +00:00
|
|
|
# Third party signin credentials (at least one is required)
|
2019-05-31 03:27:01 +00:00
|
|
|
SLACK_KEY=get_a_key_from_slack
|
|
|
|
SLACK_SECRET=get_the_secret_of_above_key
|
2017-12-19 03:59:29 +00:00
|
|
|
|
2018-05-28 18:36:37 +00:00
|
|
|
GOOGLE_CLIENT_ID=
|
|
|
|
GOOGLE_CLIENT_SECRET=
|
2019-09-21 19:23:47 +00:00
|
|
|
|
2018-06-16 19:36:02 +00:00
|
|
|
# Comma separated list of domains to be allowed (optional)
|
|
|
|
# If not set, all Google apps domains are allowed by default
|
|
|
|
GOOGLE_ALLOWED_DOMAINS=
|
2018-05-28 18:36:37 +00:00
|
|
|
|
2017-12-19 03:59:29 +00:00
|
|
|
# Third party credentials (optional)
|
|
|
|
SLACK_VERIFICATION_TOKEN=PLxk6OlXXXXXVj3YYYY
|
|
|
|
SLACK_APP_ID=A0XXXXXXX
|
2019-02-20 06:42:13 +00:00
|
|
|
SLACK_MESSAGE_ACTIONS=true
|
2017-11-09 08:01:02 +00:00
|
|
|
GOOGLE_ANALYTICS_ID=
|
2020-02-17 06:58:50 +00:00
|
|
|
SENTRY_DSN=
|
2017-11-12 23:02:23 +00:00
|
|
|
|
2019-09-21 19:23:47 +00:00
|
|
|
# AWS credentials (optional in development)
|
2019-05-31 03:27:01 +00:00
|
|
|
AWS_ACCESS_KEY_ID=get_a_key_from_aws
|
|
|
|
AWS_SECRET_ACCESS_KEY=get_the_secret_of_above_key
|
2019-06-25 06:07:54 +00:00
|
|
|
AWS_REGION=xx-xxxx-x
|
2017-12-11 06:58:52 +00:00
|
|
|
AWS_S3_UPLOAD_BUCKET_URL=http://s3:4569
|
2019-06-24 03:29:21 +00:00
|
|
|
AWS_S3_UPLOAD_BUCKET_NAME=bucket_name_here
|
2017-12-11 01:38:56 +00:00
|
|
|
AWS_S3_UPLOAD_MAX_SIZE=26214400
|
2020-08-25 06:27:10 +00:00
|
|
|
AWS_S3_FORCE_PATH_STYLE=true
|
2020-02-13 03:40:44 +00:00
|
|
|
# uploaded s3 objects permission level, default is private
|
|
|
|
# set to "public-read" to allow public access
|
|
|
|
AWS_S3_ACL=private
|
2017-12-11 01:38:56 +00:00
|
|
|
|
2017-12-19 03:59:29 +00:00
|
|
|
# Emails configuration (optional)
|
2017-11-12 23:02:23 +00:00
|
|
|
SMTP_HOST=
|
|
|
|
SMTP_PORT=
|
|
|
|
SMTP_USERNAME=
|
|
|
|
SMTP_PASSWORD=
|
2017-11-18 21:11:12 +00:00
|
|
|
SMTP_FROM_EMAIL=
|
2019-11-03 23:01:46 +00:00
|
|
|
SMTP_REPLY_EMAIL=
|
|
|
|
|
2020-04-04 22:34:11 +00:00
|
|
|
# Custom logo that displays on the authentication screen, scaled to height: 60px
|
|
|
|
# TEAM_LOGO=https://example.com/images/logo.png
|