forked from hngprojects/hng_boilerplate_nestjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.env.local
20 lines (17 loc) · 889 Bytes
/
.env.local
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# In all environments, the following files are loaded if they exist,
# the latter taking precedence over the former:
#
# * .env.local contains default values for the environment variables needed by the app (use with PROFILE=local)
# * .env.$PROFILE committed environment-specific defaults
# * .env.development.local uncommitted environment-specific overrides (only with PROFILE=development)
#
# Real environment variables win over .env files.
#
# Warning, We don't use ".env" file because it is prioritize as the same level as real environment variables.
#
# Warning, if you don't run your command with "PROFILE=prod" at the beginning, like "PROFILE=prod npm run schema:generate"
# .env files with dynamic name like ".env.$PROFILE" won't be loaded,
# even if you have the "PROFILE" variable in your ".env.local" file.
PROFILE=local
NODE_ENV=development
PORT=3008