Skip to content
Snippets Groups Projects
Commit 72664ac2 authored by Reiter, Christoph's avatar Reiter, Christoph :snake:
Browse files

Add vars to common

parent 84dc54c2
No related branches found
No related tags found
No related merge requests found
var config;
switch(process.env.BUILD) {
case "development":
config = {
apiBaseUrl: 'https://mw-dev.tugraz.at',
apiUrlPrefix: '',
keyCloakClientId: 'auth-dev-mw-frontend',
};
break;
case "production":
config = {
apiBaseUrl: 'https://mw.tugraz.at',
apiUrlPrefix: '',
keyCloakClientId: 'auth-prod-mw-frontend',
};
break;
case "demo":
config = {
apiBaseUrl: 'https://api-demo.tugraz.at',
apiUrlPrefix: '',
keyCloakClientId: 'auth-dev-mw-frontend',
};
break;
case "local":
default:
config = {
apiBaseUrl: 'http://127.0.0.1:8000',
apiUrlPrefix: '',
keyCloakClientId: 'auth-dev-mw-frontend-local',
};
}
export default config;
import env from './env.js';
export default {
/**
* Parses a link header
......@@ -29,6 +31,20 @@ export default {
return links;
},
/**
* Reads a setting
*
* @param key
* @returns {*}
*/
setting: (key) => {
return env[key];
},
getAPiUrl: (path = "", withPrefix = true) => {
return env.apiBaseUrl + (withPrefix ? vars.apiUrlPrefix : "") + path;
},
/**
* Parses the base url from an url
*
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment