forked from chartbrew/chartbrew
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.env-template
63 lines (45 loc) · 1.65 KB
/
.env-template
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
#### Global ####
# The admin email from which all the emails are delivered
CB_ADMIN_MAIL=hello@example.com
#### PRODUCTION VARS ####
# Database connection parameters
CB_DB_NAME=chartbrew
CB_DB_USERNAME=
CB_DB_PASSWORD=
CB_DB_HOST=
# A secret string which will be used to encrypt your data
CB_SECRET=change_to_random_string
# The API host string used on the server app - do not add the port here
CB_API_HOST=localhost
# Used in the client app
REACT_APP_CLIENT_HOST=https://example.com
REACT_APP_API_HOST=localhost:3210
# Email connection parameters for sending team signup invites and forgot password emails
CB_MAIL_HOST_DEV=smtp.gmail.com
CB_MAIL_USER_DEV=
CB_MAIL_PASS_DEV=
########################################
#### DEVELOPMENT VARS ####
# Database connection parameters
CB_DB_NAME_DEV=chartbrewdev
CB_DB_USERNAME_DEV=root
CB_DB_PASSWORD_DEV=
CB_DB_HOST_DEV=localhost
# A secret string which will be used to encrypt your data
CB_SECRET_DEV=change_to_random_string
# Change these to the values of your Client's and API's adresses on DEV
CB_CLIENT_DEV=http://localhost:3000
CB_API_HOST_DEV=http://localhost:3210
# The API host string used on the server app - do not add the port here
CB_API_HOST_DEV=localhost
# Used in the client app
REACT_APP_CLIENT_HOST_DEV=localhost:3000
REACT_APP_API_HOST_DEV=localhost:3210
# Email connection parameters for sending team signup invites and forgot password emails
CB_MAIL_HOST_DEV=smtp.gmail.com
CB_MAIL_USER_DEV=
CB_MAIL_PASS_DEV=
########################################
# Set this to your One account app's externalId to enable One account integration
REACT_APP_ONE_ACCOUNT_EXTERNAL_ID=
########################################