Initial commit: OpenClaw Memory System MVP
This commit is contained in:
10
src/index.ts
Normal file
10
src/index.ts
Normal 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`);
|
||||
});
|
||||
Reference in New Issue
Block a user