-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathdotenv.example
More file actions
115 lines (89 loc) · 3.14 KB
/
dotenv.example
File metadata and controls
115 lines (89 loc) · 3.14 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
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
# Set environment variables for Moraga in this file and copy it to .env or
# .env.$environment (like env.production or env.development)
#
# The following is a list of variables that Moraga uses to
# configure the system/application. Uncomment them to change
# the defaults.
# Your secret key base. You can generate a secure one with
# bundle exec rake secret
# SECRET_KEY_BASE=12345
# The type of database to use (postgresql, mysql2, sqlite3)
# MORAGA_DB_ADAPTER=mysql2
# The name of the host the database runs on
# MORAGA_DB_HOST=database
# The port the databse runs on
# MORAGA_DB_PORT=3306
# The user to access the database with
# MORAGA_DB_USER=root
# The password to access the database with
# MORAGA_DB_PASSWORD=mysecretpassword
# The name of the database
# MORAGA_DB_NAME=moraga_production
# The memached servers to use, default is a file based cache
# MORAGA_MEMCACHED_SERVERS='cache-1.example.com,cache-2.example.com'
# MORAGA_MEMCACHED_USERNAME='root'
# MORAGA_MEMCACHED_PASSWORD='1234'
# What time is it?
# MORAGA_TIME_ZONE="UTC"
# The name of your MORAGA installation
# MORAGA_NAME=MORAGA
# The host this MORAGA instance runs on. Used for
# generating urls in emails sent
# MORAGA_HOSTNAME=moraga.example.com
# The address MORAGA uses for sending mails
# MORAGA_EMAIL_ADDRESS="no-reply@example.com"
# sentry.io DSN key
# MORAGA_SENTRY_DSN=1234
# OMNIAUTH Developer Key/Secret for GOOGLE
# MORAGA_GOOGLE_KEY=1234
# MORAGA_GOOGLE_SECRET=5678
# OMNIAUTH Developer Key/Secret for Facebook
# MORAGA_FACEBOOK_KEY=1234
# MORAGA_FACEBOOK_SECRET=5678
# OMNIAUTH Developer Key/Secret for GitHub
# MORAGA_GITHUB_KEY=1234
# MORAGA_GITHUB_SECRET=5678
# OMNIAUTH Developer KEY/Secret for SUSE/openSUSE
# MORAGA_SUSE_KEY=1234
# MORAGA_SUSE_SECRET=5678
# STRIPE Publishable/Secret keys
# -> https://github.com/openSUSE/osem/wiki/Stripe
# STRIPE_PUBLISHABLE_KEY=1234
# STRIPE_SECRET_KEY=5678
# MATOMO/PIWIK CONFIGURATION
# MORAGA_PIWIK_ID=12345
# MORAGA_PIWIK_URL=localhost
# MORAGA_PIWIK_ASYNC=false
# MORAGA_PIWIK_DISABLED=true
# MORAGA_PIWIK_HOSTNAME=localhost
# The smtp configuration. See the rails guides for more
# http://guides.rubyonrails.org/action_mailer_basics.html#action-mailer-configuration
# MORAGA_SMTP_ADDRESS=smtp.gmail.com
# MORAGA_SMTP_PORT=587
# MORAGA_SMTP_DOMAIN=example.com
# MORAGA_SMTP_USERNAME=user1
# MORAGA_SMTP_PASSWORD=password123
# MORAGA_SMTP_AUTHENTICATION=plain
# MORAGA_SMTP_ENABLE_STARTTLS_AUTO=true
# MORAGA_SMTP_OPENSSL_VERIFY_MODE=peer
# Enable the usage of the devise ichain plugin
# MORAGA_ICHAIN_ENABLED=false
# MORAGA_ICHAIN_BASE_URL=https://example.com
# ReCAPTCHA keys
# RECAPTCHA_SITE_KEY=1234
# RECAPTCHA_SECRET_KEY=5678
# The Conference#short_title to redirect the root URL to
# MORAGA_ROOT_CONFERENCE=osc18
# log level in production environment
# MORAGA_LOG_LEVEL=info
# Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies.
# FORCE_SSL=true
# How should browser tests be performed?
# For headless Chrome (default):
# MORAGA_TEST_DRIVER=chrome_headless
# For Chrome:
# MORAGA_TEST_DRIVER=chrome
# For headless Firefox:
# MORAGA_TEST_DRIVER=firefox_headless
# For Firefox:
# MORAGA_TEST_DRIVER=firefox