- RAG/ subfolder content promoted to repo root (git detected as renames) - Remove parent-level docs/ and .gitignore from tracking (not part of RAG project) - Add .atl/ to .gitignore (local agent caches) - No history rewrite; prior commits preserved as-is
8 lines
197 B
TypeScript
8 lines
197 B
TypeScript
import { createApp } from "./app.js";
|
|
import { env } from "./config/env.js";
|
|
|
|
const app = createApp();
|
|
|
|
app.listen(env.port, () => {
|
|
console.log(`RAG service listening on port ${env.port}`);
|
|
});
|