This repository was archived by the owner on Sep 1, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.override.yml.example
More file actions
42 lines (42 loc) · 1.67 KB
/
docker-compose.override.yml.example
File metadata and controls
42 lines (42 loc) · 1.67 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
version: '2'
services:
web:
ports:
# Change the second number to override your local port
- 3000:3000
environment:
# Make an OAuth id/secret from here: https://console.developers.google.com/
# Use these config parameters: (use your domain instead of localhost:3000)
# Type: Web application
# Authorized JavaScript origins: http://localhost:3000
# Authorized redirect URIs: http://localhost:3000/auth/google_oauth2/callback
# Make sure to enable the "Google+ API" in the console.
#
# SITE_BASE_URL should be set to the domain Kudos is hosted on,
# i.e. http://localhost:3000
#
# SITE_SETTINGS_URL should be set to the path for the Notification Settings page,
# i.e. http://localhost:3000/settings
#
# TYPOGRAPHY_CSS_KEY should be set so that the following link is correct:
# https://cloud.typography.com/6243112/<TYPOGRAPHY_CSS_KEY>/css/fonts.css
#
- G_OAUTH_ID=<OAUTH_ID>
- G_OAUTH_SECRET=<OAUTH_SECRET>
- AWS_ACCESS_KEY=<AWS_ACCESS_KEY>
- AWS_SECRET_KEY=<AWS_SECRET_KEY>
- SMTP_SERVER=<EMAIL_SERVER>
- SMTP_PORT=<SMTP_PORT>
- SMTP_AUTH=<SMTP_AUTH>
- STARTTLS_AUTO=<STARTTLS_AUTO>
- DEFAULT_SENDER_EMAIL=<SENDER_EMAIL>
- EMAIL_DOMAIN=<DOMAIN>
- EMAIL_USERNAME=<EMAIL_USERNAME>
- EMAIL_PASSWORD=<EMAIL_PASSWORD>
- SLACK_API_TOKEN=<YOUR_SLACK_API_TOKEN>
- SITE_BASE_URL=<SITE_BASE_URL>
- SITE_SETTINGS_URL=<SITE_SETTINGS_URL>
- GITHUB_REPO_URL=<GITHUB_REPO_URL>
- GOOGLE_ANALYTICS_TAG=<GOOGLE_ANALYTICS_TAG>
- TYPOGRAPHY_CSS_KEY=<TYPOGRAPHY_CSS_KEY>
- RAILS_ENV=development