Skip to content

Commit db2db36

Browse files
author
hirsch88
committed
Refactor .env.example
1 parent aced62c commit db2db36

File tree

1 file changed

+17
-17
lines changed

1 file changed

+17
-17
lines changed

.env.example

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,43 +1,43 @@
11
#
22
# APPLICATION
33
#
4-
APP_NAME=express-typescript-boilerplate
5-
APP_ENV=local
6-
APP_HOST=http://localhost
7-
APP_URL_PREFIX=/api
4+
APP_NAME="express-typescript-boilerplate"
5+
APP_ENV="local"
6+
APP_HOST="http://localhost"
7+
APP_URL_PREFIX="/api"
88
APP_PORT=3000
99

1010
#
1111
# LOGGING
1212
#
13-
LOG_LEVEL=debug
14-
LOG_ADAPTER=winston
13+
LOG_LEVEL="debug"
14+
LOG_ADAPTER="winston"
1515

1616
#
1717
# API Info
1818
#
1919
API_INFO_ENABLED=true
20-
API_INFO_ROUTE=/info
20+
API_INFO_ROUTE="/info"
2121

2222
#
2323
# Swagger Documentation
2424
#
2525
SWAGGER_ENABLED=true
26-
SWAGGER_ROUTE=/docs
27-
SWAGGER_FILE=/src/api/swagger.json
26+
SWAGGER_ROUTE="/docs"
27+
SWAGGER_FILE="/src/api/swagger.json"
2828

2929
#
3030
# Monitor
3131
#
3232
MONITOR_ENABLED=true
33-
MONITOR_ROUTE=/status
33+
MONITOR_ROUTE="/status"
3434

3535
#
3636
# DATABASE
3737
#
3838
# MySql
39-
DB_CLIENT=mysql
40-
DB_CONNECTION=mysql://root@localhost:3306/my_database
39+
DB_CLIENT="mysql"
40+
DB_CONNECTION="mysql://root@localhost:3306/my_database"
4141

4242
# PostGres
4343
#DB_CLIENT=pg
@@ -46,12 +46,12 @@ DB_CONNECTION=mysql://root@localhost:3306/my_database
4646
# Knex
4747
DB_POOL_MIN=0
4848
DB_POOL_MAX=7
49-
DB_MIGRATION_DIR=./src/database/migrations
50-
DB_MIGRATION_TABLE=version
51-
DB_SEEDS_DIR=./src/database/seeds
49+
DB_MIGRATION_DIR="./src/database/migrations"
50+
DB_MIGRATION_TABLE="version"
51+
DB_SEEDS_DIR="./src/database/seeds"
5252

5353
#
5454
# Auth0
5555
#
56-
# AUTH0_HOST=https://w3tecch.auth0.com
57-
AUTH0_HOST=http://localhost:3333
56+
# AUTH0_HOST="https://w3tecch.auth0.com"
57+
AUTH0_HOST="http://localhost:3333"

0 commit comments

Comments
 (0)