-
Notifications
You must be signed in to change notification settings - Fork 61
/
.env.example
91 lines (76 loc) · 2.09 KB
/
.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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
#
# Start of application environment variables
#
# Standard Rails stuff (required)
secret_key_base=
devise_secret_key=
force_ssl=false
time_zone="Pacific Time (US & Canada)"
# Database configuration (required)
db_adapter=postgresql
db_database=postgres
db_username=postgres
db_password=mysecretpassword
db_port=5432
db_host=db
DB_AUTO_MIGRATE=false # or true, depending on if you want to run migrations every time the container starts
# Test database configuration
test_db_password=mysecrettestpassword
test_db_username=postgres
test_db_database=postgres
test_db_adapter=postgresql
test_db_port=5432
test_db_host=testdb
TEST_DB_AUTO_MIGRATE=false
# Social media (required)
twitter_handle=example
twitter_related="example examplelive"
facebook_handle=example
# the following twitter vars are needed only if you want to auto-fetch
# user avatars when they're added as an individual tweet target
twitter_oauth_token=
twitter_oauth_token_secret=
twitter_api_key=
twitter_api_secret=
# Mail settings (required)
smtp_username=
smtp_password=
smtp_address=smtp.example.com
mailings_from="Example Action <[email protected]>"
# Mail settings (not required)
smtp_port=587
smtp_domain=act.example.com
smtp_authentication=plain
smtp_enable_starttls_auto=true
# AWS (required)
storage=s3
amazon_access_key_id=
amazon_secret_access_key=
amazon_region=us-west-1
amazon_bucket=actioncenter
# AWS (not required)
amazon_bucket_url=act.s.example.com
amazon_authorize_key=
# Third party integration (required)
congress_forms_url=http://phantomdc.example.com
smarty_streets_id=
smarty_streets_token=
# Third party integration (not required)
call_tool_url=https://call.example.com/
call_tool_api_key=
congress_forms_debug_key=
supporters_api_key=
supporters_host=https://actioncenter:[email protected]
supporters_path=/civicrm/example-action-api
cors_allowed_domains=https://example.org https://some.example.com
fastly_api_key=
# Error reporting (not required)
sentry_dsn=
# Miscellaneous (not required)
SESSION_DAYS_TRIM_THRESHOLD=365
unthrottled_ips=
# Analytics
MATOMO_SITE_ID=
#
# End of application environment variables
#