-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env.example
44 lines (42 loc) · 1.21 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
#Opensearch node url
OPENSEARCH_NODE=
#Opensearch user name and password
OPENSEARCH_USERNAME=
OPENSEARCH_PASSWORD=
#The OpenSearch index for storing the elements
OPENSEARCH_INDEX=
#The OpenSearch index for storing the users
USER_INDEX=
#The folder storing the user uploaded contents, including thumbnails, html notebooks, user profile pictures)
UPLOAD_FOLDER=
#AWS keys and info for connecting to the bucket for data uploading
AWS_ACCESS_KEY_ID=
AWS_SECRET_ACCESS_KEY=
AWS_REGION=
AWS_BUCKET_NAME=
#SSl certificate directory
SSL_CERT=
SSL_KEY=
DOMAIN=
#Tag for distinguishing the development and the production server
SERV_TAG=development
#The port on which the backend server is running on
PORT=
#JWT tokens for generating the access token and the refresh token
JWT_ACCESS_TOKEN_SECRET=
JWT_REFRESH_TOKEN_SECRET=
#JWT cookie names
JWT_ACCESS_TOKEN_NAME=
JWT_REFRESH_TOKEN_NAME=
#The "Domain" field of the jwt related cookies
JWT_TARGET_DOMAIN=
#The frontend domain allowed to send requests with credentials to the backend
FRONTEND_DOMAIN=
# name for the access token cookie
JWT_ACCESS_TOKEN_NAME=
# name for the refresh token cookie
JWT_REFRESH_TOKEN_NAME=
######### NEO4J ##########
NEO4J_CONNECTION_STRING=
NEO4J_USER=
NEO4J_PASSWORD=