-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env.example
55 lines (43 loc) · 1.19 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
# The project name.
NAME='Auction Bay'
# The environment.
# Allowed values: development, production, staging, test
NODE_ENV=development
# The IP address where the server accepts connections.
HOST=localhost
# The port where the server accepts connections.
PORT=8888
# The base URL where the REST API is exposed.
API_BASE_URL=https://localhost:8888/api
# The base URL where the REST API is exposed.
WS_BASE_URL=wss://localhost:8888
# The base URL where the UI app is served.
UI_BASE_URL=https://localhost:8080
# The logging level.
# Allowed values: error, warn, info, debug.
LOG_LEVEL=debug
# The secret key.
SECRET_KEY=my_super_secure_key
# The maximum request body size (in KB).
MAX_REQUEST_BODY_SIZE=1024
# How to connect to MongoDB.
# The host to connect to.
MONGODB_HOST=localhost
# The port to connect to.
MONGODB_PORT=27017
# The database to connect to.
MONGODB_NAME=auction-bay
# The user to connect with.
MONGODB_USER=
# The password to connect with.
MONGODB_PASSWORD=
# The passphrase for ssl handshake
SSL_PASSPHRASE=ultra_secret
# The key file
SSL_KEY_FILE=key.pem
# The certificate
SSL_CERT_FILE=cert.pem
# Max size for upload files
MAX_FILE_SIZE=2097152
# Upload file path
UPLOAD_FILE_PATH=uploads