Skip to main content

Application Server

These settings control your core application service: where it listens for connections and how other services find it.

Base URL​

Set coreBaseUrl to where your application is accessible from the outside. Other services use this for API calls, and the frontend uses it for routing:

  • https://app.mycompany.com

  • http://localhost:3000 for local development

Server Configuration​

The serverIp and serverPort control the internal network settings, typically 0.0.0.0:3000 for both development and production.

Example configuration​

Development:

app:
serverIp: "0.0.0.0"
serverPort: 3000
coreBaseUrl: "http://localhost:3000"

Production:

app:
serverIp: "0.0.0.0"
serverPort: 3000
coreBaseUrl: "https://app.mycompany.com"