-
Notifications
You must be signed in to change notification settings - Fork 2
/
.env.example
58 lines (45 loc) · 1.41 KB
/
.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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
############################# Details required to obtain token #############################
SALESFORCE_CLIENT_ID=NULL
SALESFORCE_CLIENT_SECRET=NULL
SALESFORCE_USERNAME=NULL
SALESFORCE_PASSWORD=NULL
SALESFORCE_SECURITY_TOKEN=NULL
############################# Details required to use the API #############################
# Generated from the token request
SALESFORCE_ACCESS_TOKEN=NULL
# Generated from the token request
SALESFORCE_INSTANCE_URL=NULL
# Set this Var in the format 'v' + API_NUMBER. E.g. v44.0
SALESFORCE_API_VERSION=v44.0
############################# Frontend site info ####################################
# Used to create links to front-end site
CCS_FRONTEND_URL='http://'
# Environment, displayed in WordPress to help editors (dev, pre-prod, prod)
CCS_FRONTEND_APP_ENV=
############################# WordPress Config Details ####################################
WP_DB_NAME=''
WP_DB_USER=''
WP_DB_PASSWORD=''
WP_DB_HOST=''
WP_DB_CHARSET=''
WP_DB_COLLATE=''
WP_AUTH_KEY=''
WP_SECURE_AUTH_KEY=''
WP_LOGGED_IN_KEY=''
WP_NONCE_KEY=''
WP_AUTH_SALT=''
WP_SECURE_AUTH_SALT=''
WP_LOGGED_IN_SALT=''
WP_NONCE_SALT=''
WP_WP_CACHE_KEY_SALT=''
WP_TABLE_PREFIX=''
WP_DEBUG=1
WP_SSL=0
WP_SITEURL='www.example.com'
AS3CF_ENABLED=false
#ElasticSearch config
ELASTIC_HOST='localhost'
ELASTIC_PORT=9200
# Must use a unique name for each instance to avoid data leaking between indexes
ELASTIC_SUFFIX='local'
ELASTIC_TRANSPORT='http'