-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy path.env.rb.example
24 lines (24 loc) · 896 Bytes
/
.env.rb.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
ENV['POSTGRES_USER'] = 'postgres'
ENV['DB_USER'] = 'postgres'
ENV['DB_PASS'] = 'postgres'
ENV['DB_HOST'] = 'localhost'
ENV['DEVISE_SECRET_KEY'] = ''
ENV['DEVISE_JWT_SECRET_KEY'] = ''
ENV['DEVISE_PEPPER'] = ''
ENV['DEVISE_EMAIL'] = '[email protected]'
ENV['APPLICATION_HOST'] = 'localhost:3000'
ENV['APPLICATION_PROTOCOL'] = 'http'
ENV['EMAIL_SERVER'] = 'mail.example.com'
ENV['SECRET_KEY_BASE'] = ''
ENV['SECRET_TOKEN'] = ''
ENV['REDIS_URL'] = 'redis://localhost:6379'
ENV['WEBMASTER_EMAIL'] = '[email protected]'
ENV['BIRS_COORD'] = 'BIRS Program Coordinator'
ENV['BIRS_EMAIL'] = '[email protected]'
ENV['CMO_COORD'] = 'CMO Program Coordinator'
ENV['CMO_EMAIL'] = '[email protected]'
ENV['IASM_COORD'] = 'IASM Program Coordinator'
ENV['IASM_EMAIL'] = '[email protected]'
ENV['UBCO_COORD'] = 'UBCO Program Coordinator'
ENV['UBCO_EMAIL'] = '[email protected]'
ENV['MAILHOG_HOST'] = 'localhost'