Skip to content

Commit 671fcfc

Browse files
authored
Remove quotations from .env.example
Quotations are not needed by `env.ts`, `docker run --env-file` doesn't accept quoted values.
1 parent 37a5da9 commit 671fcfc

File tree

1 file changed

+21
-21
lines changed

1 file changed

+21
-21
lines changed

.env.example

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,57 +1,57 @@
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=true
1010

1111
#
1212
# LOGGING
1313
#
14-
LOG_LEVEL="debug"
14+
LOG_LEVEL=debug
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="mysql"
27-
DB_HOST="localhost"
26+
DB_TYPE=mysql
27+
DB_HOST=localhost
2828
DB_PORT=3306
29-
DB_USERNAME="root"
30-
DB_PASSWORD=""
31-
DB_DATABASE="my_database"
29+
DB_USERNAME=root
30+
DB_PASSWORD=
31+
DB_DATABASE=my_database
3232
DB_SYNCHRONIZE=false
3333
DB_LOGGING=false
3434

3535
#
3636
# GraphQL
3737
#
3838
GRAPHQL_ENABLED=true
39-
GRAPHQL_ROUTE="/graphql"
39+
GRAPHQL_ROUTE=/graphql
4040
GRAPHQL_EDITOR=true
4141

4242
#
4343
# Swagger
4444
#
4545
SWAGGER_ENABLED=true
46-
SWAGGER_ROUTE="/swagger"
47-
SWAGGER_FILE="api/swagger.json"
48-
SWAGGER_USERNAME="admin"
49-
SWAGGER_PASSWORD="1234"
46+
SWAGGER_ROUTE=/swagger
47+
SWAGGER_FILE=api/swagger.json
48+
SWAGGER_USERNAME=admin
49+
SWAGGER_PASSWORD=1234
5050

5151
#
5252
# Status Monitor
5353
#
5454
MONITOR_ENABLED=true
55-
MONITOR_ROUTE="/monitor"
56-
MONITOR_USERNAME="admin"
57-
MONITOR_PASSWORD="1234"
55+
MONITOR_ROUTE=/monitor
56+
MONITOR_USERNAME=admin
57+
MONITOR_PASSWORD=1234

0 commit comments

Comments
 (0)