@4me/xman
Required variables
FLIGHT_POSITIONS_URL (required)
URL of the flight positions service
Example:
FLIGHT_POSITIONS_URL=http://flight-position-service
DESTINATIONS (required)
A list of comma separated XMAN destinations. Possible values are EGKK, EGLL or LSZH
Example:
DESTINATIONS=EGKK,EGLL
XXXX_URL (required)
URL of the XML sequence file, where XXXX is a known destination.
Example:
XXXX_URL=https://sequence-for-XXXX/xman.xml
Optional variables
- PORT
Port the application the will run on
Example:
PORT=4000
Default value:
3000
- LOG_PRETTY
Enable/disable human readable logs. JSON logs will be produced otherwise.
Example:
LOG_PRETTY=1
Default value:
process.env.NODE_ENV === 'development'
- LOG_LEVEL
Change the log level. Possible values are fatal, error, warn, info, debug or trace.
Example:
LOG_LEVEL=trace
Default value:
process.env.NODE_ENV === 'development' ? 'debug' : 'info'