-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy path.env
More file actions
26 lines (19 loc) · 755 Bytes
/
.env
File metadata and controls
26 lines (19 loc) · 755 Bytes
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
MAIN_DB_NAME='paybutton'
MAIN_DB_PASSWORD='paybutton-password'
MAIN_DB_ROOT_PASSWORD='paybutton-root-password'
MAIN_DB_USER='paybutton-user'
MAIN_DB_HOST='db'
MAIN_DB_PORT='3306'
MAIN_DB_CONNECTION_LIMIT='50'
SUPERTOKENS_DB_USER='st-user'
SUPERTOKENS_DB_PASSWORD='st-password'
DATABASE_URL="mysql://$MAIN_DB_USER:$MAIN_DB_PASSWORD@$MAIN_DB_HOST:$MAIN_DB_PORT/$MAIN_DB_NAME?charset=utf8mb4&connection_limit=$MAIN_DB_CONNECTION_LIMIT"
SHADOW_DATABASE_URL="mysql://$MAIN_DB_USER:$MAIN_DB_PASSWORD@$MAIN_DB_HOST:$MAIN_DB_PORT/prisma-shadow-db?charset=utf8mb4&connection_limit=$MAIN_DB_CONNECTION_LIMIT"
### These must be set in .env.local:
# PRICE_API_TOKEN=
# WS_AUTH_KEY=
# MASTER_SECRET_KEY=
# SIDESHIFT_SECRET_KEY
# SMTP_USER=
# SMTP_PASSWORD=
###