-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.example.env
22 lines (17 loc) · 863 Bytes
/
.example.env
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Here are exmaples of enviroment variables that is used in the code.
# If yo want to use .env files in your project you might need to manually install dotenv package (it's dev only dependency on this package).
# set to true, if you want to ensure that new migratiosn scripts are followong index pattern/timeline
# Default "true" in "NODE_ENV='production", "false" otherwise
MIGRATIONS_STRICT_ORDER=true
# For scripts ordered by numbers. Migration will fail if number will missmach the migration version.
# To enable migrations scripts ordered by timestamp, this must be voided or set to false.
# Default = false
MIGRATIONS_NUMERIC_ORDER=false
# Default path to the migrations folder for CLI script generator
MIGRATION_FOLDER=
# For running tests in this package you have to set database connection in env
DB_HOST=
DB_PORT=
DB_USER=
DB_PASSWORD=
DB_DATABASE=