#!/usr/bin/env node /** * Zoe Server — Standalone Entry Point * * Starts the Zoe remote server as a standalone process. * Suitable as a Docker CMD/ENTRYPOINT or direct CLI invocation. * * Usage: * node dist/adapters/server/standalone.js * node dist/adapters/server/standalone.js --generate-api-key * * Environment variables: * ZOE_PORT / PORT — Port to listen on (default: 7337) * ZOE_HOST — Host to bind to (default: "0.0.0.0") * ZOE_SESSION_DIR — Directory for session storage * ZOE_SESSION_TTL — Session TTL in seconds (default: 86400) * ZOE_API_KEYS_FILE — Path to API key store file */ export {};