-
-
Notifications
You must be signed in to change notification settings - Fork 68
Expand file tree
/
Copy path.env.example
More file actions
24 lines (19 loc) · 739 Bytes
/
.env.example
File metadata and controls
24 lines (19 loc) · 739 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
# ID for identifying containers created by docker-compose
# This variable is valid for all projects (debug, hub, nginx, and "production")
ID_PROJECT=mean
# For angular, the base href is the path where the app is hosted, use / if the app is hosted in the root.
# This is used to generate the index.html file with the correct base href and is only valid for production mode.
BASE_HREF=/contacts/
# API Configuration
PORT=3000
NODE_ENV=development
SECRET=your-jwt-secret-key
# MongoDB Configuration
MONGO_DB_USERNAME=dbuser
MONGO_DB_PASSWORD=password123
MONGO_DB_HOST=database
MONGO_DB_PORT=27017
MONGO_DB_DATABASE=contact_db
MONGO_DB_PARAMETERS=?authSource=admin
MONGO_INITDB_ROOT_USERNAME=dbuser
MONGO_INITDB_ROOT_PASSWORD=password123