Initial commit: OpenClaw Memory System MVP

This commit is contained in:
daotong
2026-04-04 11:15:57 +00:00
commit f18f4daea5
14 changed files with 1389 additions and 0 deletions

10
src/index.ts Normal file
View File

@@ -0,0 +1,10 @@
import app from './app';
const PORT = process.env.PORT || 3000;
app.listen(PORT, () => {
console.log(`🧠 OpenClaw Memory System`);
console.log(`📡 Server running on http://0.0.0.0:${PORT}`);
console.log(`🔍 Health check: http://0.0.0.0:${PORT}/health`);
console.log(`📚 API endpoint: http://0.0.0.0:${PORT}/api/memories`);
});