From ce582383c3c4ba6e06800a5aaeb939be4c82a1c7 Mon Sep 17 00:00:00 2001 From: Jonathan Bernard Date: Sun, 9 Feb 2020 04:22:00 -0600 Subject: [PATCH] api: Change root application path to '/v0' instead of '/api'. --- api/src/main/nim/personal_measure_apipkg/api.nim | 2 +- web/.env.development | 2 +- web/.env.production | 2 +- web/vue.config.js | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/api/src/main/nim/personal_measure_apipkg/api.nim b/api/src/main/nim/personal_measure_apipkg/api.nim index a484c7d..c6703c4 100644 --- a/api/src/main/nim/personal_measure_apipkg/api.nim +++ b/api/src/main/nim/personal_measure_apipkg/api.nim @@ -207,7 +207,7 @@ proc start*(ctx: PMApiContext): void = settings: port = Port(ctx.cfg.port) - appName = "/api" + appName = "/v0" routes: diff --git a/web/.env.development b/web/.env.development index 990c916..ec68ba2 100644 --- a/web/.env.development +++ b/web/.env.development @@ -1,4 +1,4 @@ NODE_ENV=production -VUE_APP_PM_API_BASE=https://pmapi-dev.jdb-labs.com/api +VUE_APP_PM_API_BASE=https://pmapi-dev.jdb-labs.com/v0 VUE_APP_LOG_LEVEL=INFO VUE_APP_API_LOG_LEVEL=ERROR diff --git a/web/.env.production b/web/.env.production index 6563647..ab4ceb8 100644 --- a/web/.env.production +++ b/web/.env.production @@ -1,3 +1,3 @@ -VUE_APP_PM_API_BASE=https://pmapi.jdb-labs.com/api +VUE_APP_PM_API_BASE=https://pmapi.jdb-labs.com/v0 VUE_APP_LOG_LEVEL=INFO VUE_APP_API_LOG_LEVEL=ERROR diff --git a/web/vue.config.js b/web/vue.config.js index 11e3fa8..f0d2536 100644 --- a/web/vue.config.js +++ b/web/vue.config.js @@ -8,7 +8,7 @@ const VERSION = { module.exports = { devServer: { proxy: { - '/api': { target: 'http://localhost:8081' } + '/v0': { target: 'http://localhost:8081' } }, host: 'localhost', disableHostCheck: true