The Orchestrator was referencing two possible environment variables for its API port: PORT and API_PORT -- the latter of which was only referenced in the Config object.
Solution (Changes Made)
API pulls it's port number from the Config object now, which references the API_PORT env variable and defaults to 4000 if it is not set.
Feature/Problem Description
The Orchestrator was referencing two possible environment variables for its API port:
PORT
andAPI_PORT
-- the latter of which was only referenced in theConfig
object.Solution (Changes Made)
Config
object now, which references theAPI_PORT
env variable and defaults to 4000 if it is not set.