-
Notifications
You must be signed in to change notification settings - Fork 3
/
config.yml.example
74 lines (58 loc) · 1.98 KB
/
config.yml.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
# Any key that takes a string as its value can be overridden by
# setting an environment variable of the same name.
# What is the site called? What government entity is it being used by?
# These keys will be used in views and outgoing emails.
SITE_TITLE: Dispatch
AGENCY_NAME: The City of Philadelphia
# This name must correspond to a subdirectory in the themes/ directory
THEME: dvl-core
FOOTER_LINKS:
- text: Contact us
href: 'mailto:support@dobt.co'
# Each entry must correspond to a template in views/static/#{path}.html.erb
STATIC_PAGES:
- name: About
path: about
# Valid options: file, aws
UPLOAD_STORAGE: file
# AWS requires these settings:
# AWS_KEY:
# AWS_SECRET:
# AWS_REGION:
# AWS_BUCKET:
# Where do notifications get sent from?
EMAIL_NOTIFICATION_FROM_ADDRESS: noreply@dobt.co
# How long before the question deadline should we remind subscribers?
QUESTION_DEADLINE_REMINDER_HOURS: 48
# How long before the submission deadline should we remind subscribers?
SUBMISSION_DEADLINE_REMINDER_HOURS: 72
# Users with an email address that ends in one of these domains will
# automatically be granted `staff` permission
STAFF_DOMAINS:
- dispatch.gov
# *Highly* recommended in production
SSL: false
# The domain of your site, e.g. "www.dispatch.gov". Don't include the `https`
BASE_DOMAIN: localhost:3000
# Rails cookie-signing secrets. You cangGenerate values with `rake secret`
# for deployed environments.
SECRET_TOKEN: this is an insecure value that must...
SECRET_KEY_BASE: ...be changed in production!
# Use a CDN
# ASSET_HOST:
# In staging, redirect all email that does not match the address whitelist
# to this user. Used for preventing users from receiving emails sent
# by a staging server.
#
# REDIRECT_EMAIL_TO: noreply@dobt.co
# SMTP configuration for sending email in deployed environments. This must be
# configured in staging and production!
#
# SMTP_ADDRESS:
# SMTP_PORT:
# SMTP_STARTTLS_AUTO:
# SMTP_USER:
# SMTP_PASSWORD:
# SMTP_AUTHENTICATION:
# SMTP_DOMAIN:
# SMTP_SSL: