feat: stabilization + recipe edit/create UI

This commit is contained in:
clawd
2026-02-18 09:55:39 +00:00
commit ee452efa6a
75 changed files with 15160 additions and 0 deletions

18
backend/src/index.ts Normal file
View File

@@ -0,0 +1,18 @@
import { buildApp } from './app.js';
import { runMigrations } from './db/migrate.js';
const PORT = Number(process.env.PORT || 6001);
async function main() {
console.log('Running migrations...');
runMigrations();
const app = await buildApp();
await app.listen({ port: PORT, host: '0.0.0.0' });
console.log(`Server running on http://localhost:${PORT}`);
}
main().catch((err) => {
console.error(err);
process.exit(1);
});