-
Notifications
You must be signed in to change notification settings - Fork 4
/
.env.example
22 lines (21 loc) · 937 Bytes
/
.env.example
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Change these variables to match your environment
SECRET_KEY_BASE=**exec `rails secret` and put the output here**
SHARED_SECRET=**only needed if using custom external app integration**
APP_BASE_URL=http://localhost:3000
CALCULIST_MAIN_URL=https://calculist.io
CALCULIST_DATABASE=**your database**
CALCULIST_DATABASE_USER=**your db user**
CALCULIST_DATABASE_PASSWORD=**strong password**
VIRTUAL_HOST=my.domain.com
LETSENCRYPT_HOST=my.domain.com
MAILGUN_USERNAME=**your mg smtp username**
MAILGUN_PASSWORD=**your mg smtp password**
STRIPE_PUBLISHABLE_KEY=**not needed unless charging for service**
STRIPE_SECRET_KEY=**not needed unless charging for service**
STRIPE_PERSONAL_PLAN_ID=**not needed unless charging for service**
STRIPE_PRO_PLAN_ID=**not needed unless charging for service**
# The variables below do not need to be changed
RAILS_ENV=production
RAILS_SERVE_STATIC_FILES=true
VIRTUAL_PORT=3000