This repository was archived by the owner on Jul 24, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 57
/
Copy path.env.example
50 lines (48 loc) · 2.66 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
# Reservations sample configuration file; you can use this with the
# dotenv-deploy gem or simply set the relevant environment variables
#
# The required configuration parameters / environment variables are:
# CAS_AUTH - set this to any value to use CAS authentication, requires the
# next parameter
# CAS_BASE_URL - set this if using CAS authentication to the base URL
# DEVISE_SECRET_KEY - secret key used by Devise for authentication
# DEVISE_PEPPER - pepper used by Devise to generate encrypted passwords
# RAILS_RELATIVE_URL_ROOT - set this if deploying to a subdirectory
# (e.g. example.com/reservations)
# SECRET_KEY_BASE - secret key used to sign cookies (in secrets.yml)
# RES_DB_NAME - name of the database
# RES_DB_USERNAME - username for database access
# RES_DB_PASSWORD - password for database access
# RES_DB_HOST - host for the database
# DISABLE_EMAILS - set to any value to disable sending ALL e-mails
# LOG_EMAILS - set to any value to log the sending of automatic emails
# RES_SMTP_ADDRESS - SMTP server address
# RES_SMTP_PORT - SMTP server port
# RES_SMTP_DOMAIN - SMTP server domain
# RES_SMTP_AUTH - whether or not to use authentication for SMTP (set to any
# value to enable authentication, requires the next two parameters)
# RES_SMTP_USERNAME - SMTP authentication username
# RES_SMTP_PASSWORD - SMTP authentication password
# RAILS_HOST_NAME - the host name for your application (e.g. example.com),
# ensures that e-mail links work
# USE_LDAP - whether or not to use LDAP for new user lookup (set to any
# value to enable LDAP, requires the next eight parameters)
# RES_LDAP_HOST - hostname for LDAP lookups
# RES_LDAP_PORT - port for LDAP lookups
# RES_LDAP_BASE - base for LDAP lookups
# RES_LDAP_LOGIN - LDAP field corresponding to username (for CAS)
# RES_LDAP_EMAIL - LDAP field corresponding to e-mail
# RES_LDAP_FIRST_NAME - LDAP field corresponding to first name
# RES_LDAP_LAST_NAME - LDAP field corresponding to last name
# RES_LDAP_NICKNAME - LDAP field corresponding to nickname
# RES_LDAP_AFFILIATION - LDAP field(s) corresponding to affiliation, comma-
# separated (results will be concatenated in order, separated by spaces)
# PARTY_FOUL_TOKEN - set this to the GitHub OAuth token you use if you
# implement party_foul to generate issues from exceptions to your fork of
# Reservations
# SERVE_STATIC - set this to any value if you want Rails to serve static
# assets; this is generally only used for Heroku deployments
# Uncomment the following line to enable CAS authentication
# export CAS_AUTH=1
# Uncomment the following line to enable LDAP user lookup
# export USE_LDAP=1