Small change to web Makefile to allow overriding the API host port.

This commit is contained in:
Jonathan Bernard 2019-05-18 12:26:23 -05:00
parent 8114136bbd
commit 3015c9ce2b

View File

@ -1,4 +1,4 @@
API_HOST='localhost'
API_ADDR='localhost:8080'
API_LOG_LEVEL='WARN'
LOG_LEVEL='TRACE'
@ -9,7 +9,7 @@ build:
npm run build
serve:
VUE_APP_PM_API_BASE=http://${API_HOST}:8080/api \
VUE_APP_PM_API_BASE=/api \
VUE_APP_API_LOG_LEVEL=${API_LOG_LEVEL} \
VUE_APP_LOG_LEVEL=${LOG_LEVEL} \
npm run serve