-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.env
More file actions
36 lines (29 loc) · 1.1 KB
/
.env
File metadata and controls
36 lines (29 loc) · 1.1 KB
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
# In all environments, the following files are loaded if they exist,
# the latter taking precedence over the former:
# - .env contains default values for the environment variables needed by the application
# - .env.local (uncommitted) file with local overrides (Not loaded in test environment)
# - .env.NODE_ENV (committed) file with environment-specific overrides
# - .env.NODE_ENV.local (uncommitted) file with environment-specific overrides
## ---------------------------------------------------------------------------- ##
# DO NOT DEFINE PRODUCTION SECRETS IN THIS FILE NOR IN ANY OTHER COMMITTED FILES.
## ---------------------------------------------------------------------------- ##
###> app ###
APP_KEY=
APP_NAME=Kairos
NODE_ENV=development
###< app ###
###> server ###
PORT=3000
###< server ###
###> mongodb ###
MONGODB_PORT=27017
MONGODB_CONNECTION_STRING=mongodb://mongodb:27017/kairos
###< mongodb ###
###> setup ###
SUPER_ADMIN_USERNAME=admin
SUPER_ADMIN_EMAIL=admin@example.com
SUPER_ADMIN_PASSWORD=password
###< setup ###
###> logging ###
LOG_LEVEL=info
###< logging ###