-
Notifications
You must be signed in to change notification settings - Fork 0
/
.env.example
38 lines (28 loc) · 974 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
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# CORS hostnames based on https://github.com/cyu/rack-cors
CORS_ORIGINS=127.0.0.1:5000,localhost:5000,lvh.me:5000
# Exclude gems that are part of the specified named group
BUNDLE_WITHOUT=
# Name of docker image
IMAGE_NAME=rails_base_graphql_api
# Allow connect to remote database (in separate container)
DATABASE_CLEANER_ALLOW_REMOTE_DATABASE_URL=true
AUTH_SECRET_TOKEN=big_secret_token
REDIS_URL=redis://localhost:6379/1
# AWS S3 Configuration
S3_BUCKET_NAME=
S3_BUCKET_REGION=
S3_ACCESS_KEY_ID=
S3_SECRET_ACCESS_KEY=
# Mailer Configuration
SENDGRID_PASSWORD=qwerty
PASSWORD_RECOVERY_LINK_TEMPLATE="http://lvh.me:5000/password_reset?token=%{password_reset_token}"
CONFIRM_USER_LINK_TEMPLATE="http://lvh.me:5000/confirm_user?token=%{token_value}"
# Hostname for URL helpers
HOST=localhost:3000
# Oauth
GOOGLE_CLIENT_ID=
GOOGLE_CLIENT_SECRET=
# Token length
CONFIRMATION_TOKEN_LENGTH=40