This commit is contained in:
Harivansh Rathi 2026-04-01 02:28:45 +00:00
parent 12c53f3515
commit dc7969e579
37 changed files with 177 additions and 177 deletions

View file

@ -14,7 +14,7 @@ export function loadConfig(env: NodeJS.ProcessEnv = process.env): ControlPlaneCo
return {
port,
version: env.AINAS_VERSION ?? "0.1.0-dev",
version: env.betternas_VERSION ?? "0.1.0-dev",
nextcloudBaseUrl: normalizeBaseUrl(env.NEXTCLOUD_BASE_URL ?? "http://nextcloud")
};
}

View file

@ -5,6 +5,6 @@ const config = loadConfig();
const app = createApp(config);
app.listen(config.port, "0.0.0.0", () => {
console.log(`aiNAS control plane listening on port ${config.port}`);
console.log(`betternas control plane listening on port ${config.port}`);
});