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 = {}