Skip to content

Commit 2d163ce

Browse files
feature: Better handling of missing environment variables in setupProxy.js file. (#2956)
Signed-off-by: Artur Owczarek <owczarek.artur@gmail.com>
1 parent 9e2e9b4 commit 2d163ce

File tree

1 file changed

+12
-2
lines changed

1 file changed

+12
-2
lines changed

web/setupProxy.js

+12-2
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,23 @@ const { createProxyMiddleware } = require('http-proxy-middleware');
33
const express = require('express')
44
const router = express.Router()
55

6+
const environmentVariable = (variableName) => {
7+
const value = process.env[variableName]
8+
if (!value) {
9+
console.error(`Error: ${variableName} environment variable is not defined.`)
10+
console.error(`Please set ${variableName} and restart the application.`)
11+
process.exit(1)
12+
}
13+
return value
14+
}
15+
616
const apiOptions = {
7-
target: `http://${process.env.MARQUEZ_HOST}:${process.env.MARQUEZ_PORT}/`
17+
target: `http://${(environmentVariable("MARQUEZ_HOST"))}:${environmentVariable("MARQUEZ_PORT")}/`
818
}
919
const app = express()
1020
const path = __dirname + '/dist'
1121

12-
const port = process.env.WEB_PORT
22+
const port = environmentVariable("WEB_PORT")
1323

1424
app.use('/', express.static(path))
1525
app.use('/datasets', express.static(path))

0 commit comments

Comments
 (0)