@plosson/agentio 0.5.6 → 0.5.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/gateway/daemon.ts +3 -1
package/package.json
CHANGED
package/src/gateway/daemon.ts
CHANGED
|
@@ -255,9 +255,11 @@ export async function startGateway(): Promise<void> {
|
|
|
255
255
|
};
|
|
256
256
|
config.gateway = gatewayConfig;
|
|
257
257
|
await saveConfig(config);
|
|
258
|
-
console.log(`First run - generated API key: ${generatedKey}`);
|
|
259
258
|
}
|
|
260
259
|
|
|
260
|
+
// Always display API key for easy access (e.g., Docker logs)
|
|
261
|
+
console.log(`API Key: ${gatewayConfig.apiKey}`);
|
|
262
|
+
|
|
261
263
|
// Initialize database
|
|
262
264
|
await initDatabase();
|
|
263
265
|
console.log('Database initialized');
|