10 lines
352 B
TypeScript
10 lines
352 B
TypeScript
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`);
|
|
}); |