Skip to content

Commit 48aaf58

Browse files
authored
Merge pull request #81 from lopezm94/patch-4
Remove quotations from .env.test
2 parents 3b217cc + 34e949e commit 48aaf58

File tree

1 file changed

+18
-18
lines changed

1 file changed

+18
-18
lines changed

.env.test

+18-18
Original file line numberDiff line numberDiff line change
@@ -1,51 +1,51 @@
11
#
22
# APPLICATION
33
#
4-
APP_NAME="express-typescript-boilerplate"
5-
APP_SCHEMA="http"
6-
APP_HOST="localhost"
7-
APP_PORT="3000"
8-
APP_ROUTE_PREFIX="/api"
4+
APP_NAME=express-typescript-boilerplate
5+
APP_SCHEMA=http
6+
APP_HOST=localhost
7+
APP_PORT=3000
8+
APP_ROUTE_PREFIX=/api
99
APP_BANNER=false
1010

1111
#
1212
# LOGGING
1313
#
14-
LOG_LEVEL="none"
14+
LOG_LEVEL=none
1515
LOG_JSON=false
16-
LOG_OUTPUT="dev"
16+
LOG_OUTPUT=dev
1717

1818
#
1919
# AUTHORIZATION
2020
#
21-
AUTH_ROUTE="http://localhost:3333/tokeninfo"
21+
AUTH_ROUTE=http://localhost:3333/tokeninfo
2222

2323
#
2424
# DATABASE
2525
#
26-
DB_TYPE="sqlite"
27-
DB_DATABASE="./mydb.sql"
26+
DB_TYPE=sqlite
27+
DB_DATABASE=./mydb.sql
2828
DB_LOGGING=false
2929

3030
#
3131
# GraphQL
3232
#
3333
GRAPHQL_ENABLED=true
34-
GRAPHQL_ROUTE="/graphql"
34+
GRAPHQL_ROUTE=/graphql
3535

3636
#
3737
# Swagger
3838
#
3939
SWAGGER_ENABLED=true
40-
SWAGGER_ROUTE="/swagger"
41-
SWAGGER_FILE="api/swagger.json"
42-
SWAGGER_USERNAME="admin"
43-
SWAGGER_PASSWORD="1234"
40+
SWAGGER_ROUTE=/swagger
41+
SWAGGER_FILE=api/swagger.json
42+
SWAGGER_USERNAME=admin
43+
SWAGGER_PASSWORD=1234
4444

4545
#
4646
# Status Monitor
4747
#
4848
MONITOR_ENABLED=true
49-
MONITOR_ROUTE="/monitor"
50-
MONITOR_USERNAME="admin"
51-
MONITOR_PASSWORD="1234"
49+
MONITOR_ROUTE=/monitor
50+
MONITOR_USERNAME=admin
51+
MONITOR_PASSWORD=1234

0 commit comments

Comments
 (0)