File tree 1 file changed +12
-2
lines changed
1 file changed +12
-2
lines changed Original file line number Diff line number Diff line change @@ -3,13 +3,23 @@ const { createProxyMiddleware } = require('http-proxy-middleware');
3
3
const express = require ( 'express' )
4
4
const router = express . Router ( )
5
5
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
+
6
16
const apiOptions = {
7
- target : `http://${ process . env . MARQUEZ_HOST } :${ process . env . MARQUEZ_PORT } /`
17
+ target : `http://${ ( environmentVariable ( " MARQUEZ_HOST" ) ) } :${ environmentVariable ( " MARQUEZ_PORT" ) } /`
8
18
}
9
19
const app = express ( )
10
20
const path = __dirname + '/dist'
11
21
12
- const port = process . env . WEB_PORT
22
+ const port = environmentVariable ( " WEB_PORT" )
13
23
14
24
app . use ( '/' , express . static ( path ) )
15
25
app . use ( '/datasets' , express . static ( path ) )
You can’t perform that action at this time.
0 commit comments