Files
old-web/app/config/appConfig.js
2019-09-05 14:24:29 +02:00

10 lines
209 B
JavaScript

const APP_PORT = process.env.APP_PORT || 5000;
const APP_BASE_URL = process.env.APP_BASE_URL || "http://localhost";
const APP_URL = `${APP_BASE_URL}:${APP_PORT}`;
module.exports = {
APP_PORT,
APP_URL
};