-
Notifications
You must be signed in to change notification settings - Fork 69
/
.env.example
38 lines (32 loc) · 953 Bytes
/
.env.example
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
# Example configuration for .env variables.
#
# To use on your development environment,
# copy this file as .env and modify at your will.
# The gem dotenv-rails will pick up your .env file
# and expose the variables to rails.
#
# Your local .env file is added to .gitignore and
# wont be uploaded to the repo.
# Database setup
DATABASE_USER=postgres
DATABASE_NAME=timeoverflow_development
# Rails settings
RAILS_LOG_LEVEL=debug
STORAGE_PROVIDER=amazon
FORCE_SSL=true
# Host part of the url for mail links:
MAIL_LINK_HOST=localhost:3000
MAIL_LINK_PROTO=http
# Email provider
SMTP_PASSWORD=XXXXXXXX
SMTP_DOMAIN=www.timeoverflow.org
SMTP_ADDRESS=smtp.mailgun.org
SMTP_PORT=587
# List of emails for superadmin users
ADMINS="[email protected]"
# AWS settings (if STORAGE_PROVIDER=amazon)
AWS_ACCESS_KEY_ID=XXXXXXXX
AWS_SECRET_ACCESS_KEY=XXXXXXXX
AWS_BUCKET=timeoverflow_development
AWS_REGION=us-east-1