Configuration (database URLs, API keys, ports, feature flags) should live outside your code in environment variables — never hardcoded. This keeps secrets out of source control and lets the same code run in dev, staging, and production with different settings.
The principle: config from the environment
dbUrl = ;
dbUrl = process..;
port = process.. || ;
