forked from catima/catima
-
Notifications
You must be signed in to change notification settings - Fork 0
/
example.env
77 lines (61 loc) · 2.49 KB
/
example.env
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
# Copy this file into a new file called ".env" in the root of the project.
# The dotenv gem will load the contents of .env into the environment when
# Rails starts. Access values like this: ENV["RAILS_SECRET_KEY_BASE"]
#
# The purpose of this file is to keep secrets out of source control.
# For more information, see: https://github.com/bkeepers/dotenv
RAILS_SECRET_KEY_BASE=your-rails-secret-key-base
SIDEKIQ_WEB_USERNAME=admin
SIDEKIQ_WEB_PASSWORD=password
ROLLBAR_ACCESS_TOKEN=your-rollbar-access-token
MAIL_SMTP_ADDRESS=smtp.example.com
MAIL_SMTP_AUTH=1
MAIL_SMTP_USERNAME=smtp-username
MAIL_SMTP_PASSWORD=smtp-password
MAIL_SMTP_PORT=587
MAIL_SMTP_DOMAIN=catima.example.com
# Define the base url of the documentation repository. For development and
# staging use the development branch, for production use the master branch.
DOC_BASE_URL=https://raw.githubusercontent.com/catima/userdoc/development
# If you want to change the maxium upload size (in MB) for the specified fields,
# please uncomment the lines below and change the values. Defaut is 200MB for
# the file field, and 15MB for the image field.
#FILE_MAX_UPLOAD_SIZE=200
#IMAGE_MAX_UPLOAD_SIZE=15
# If you want to change the export validity for the catalogs (in days), please
# uncomment the line below and change the value. Defaut is 7 days.
#EXPORTS_VALIDITY=7
# If you want to disable visits & events tracking, please change the value to 0.
AHOY_ENABLE_TRACKING=1
# If you want to change the stats visits & events validity (in months), please
# uncomment the lines below and change the value. Defaut is 6 months for the visits,
# and 4 months for the events.
#AHOY_VISITS_VALIDITY=6
#AHOY_EVENTS_VALIDITY=4
# Define the domain and protocol settings
# Your asset host can be the same server as the Rails app,
# but you can also move your assets on a different server.
# Example settings for a production environment:
#
# ASSET_HOST=https://catima-assets.example.com
# DOMAIN=catima.example.com
# PROTOCOL=https
#
# For development we can simply use:
ASSET_HOST=http://localhost:3000
DOMAIN=localhost:3000
PROTOCOL=http
# Authentication settings
# CATIMA can use different authentication strategies.
# Setting the appropriate values here enables the strategy in the app.
# Leave the values empty to disable the strategy.
AUTH_FACEBOOK_APP_ID=
AUTH_FACEBOOK_APP_SECRET=
AUTH_GITHUB_APP_ID=
AUTH_GITHUB_APP_SECRET=
AUTH_SHIB_SESSION_ID=
AUTH_SHIB_APP_ID=
AUTH_SHIB_NAME=
RECAPTCHA_SITE_KEY=site_key
RECAPTCHA_SECRET_KEY=secret_key