10 lines
209 B
JavaScript
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
|
|
};
|