From 35b45f4b3d80903ee191b8c398220490aa89ad13 Mon Sep 17 00:00:00 2001 From: Ulf Gebhardt Date: Fri, 19 Nov 2021 20:56:23 +0100 Subject: [PATCH] todo port & define port due to my setup --- admin/src/config/index.js | 1 + frontend/src/config/index.js | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/admin/src/config/index.js b/admin/src/config/index.js index a6c728498..1ef44fe60 100644 --- a/admin/src/config/index.js +++ b/admin/src/config/index.js @@ -19,6 +19,7 @@ const environment = { const endpoints = { GRAPHQL_URI: process.env.GRAPHQL_URI || 'http://localhost:4000/graphql', + // TODO port WALLET_AUTH_URL: process.env.WALLET_AUTH_URL || 'http://localhost:3000/vue/authenticate?token=$1' } diff --git a/frontend/src/config/index.js b/frontend/src/config/index.js index 6c7c49013..01c6c009a 100644 --- a/frontend/src/config/index.js +++ b/frontend/src/config/index.js @@ -20,7 +20,8 @@ const environment = { const endpoints = { GRAPHQL_URI: process.env.GRAPHQL_URI || 'http://localhost:4000/graphql', - ADMIN_AUTH_URL: process.env.ADMIN_AUTH_URL || 'http://localhost/admin/authenticate?token=$1' + // TODO port + ADMIN_AUTH_URL: process.env.ADMIN_AUTH_URL || 'http://localhost:8080/admin/authenticate?token=$1' } const options = {}