added README and RAG

This commit is contained in:
ION606
2025-09-10 17:34:22 -04:00
parent 2a6bed386c
commit 96938f4b18
3 changed files with 485 additions and 2 deletions
+12
View File
@@ -0,0 +1,12 @@
# syntax=docker/dockerfile:1
FROM oven/bun:1.2.2-alpine
WORKDIR /app
COPY index.ts ./index.ts
ENV PORT=8788
EXPOSE 8788
CMD ["bun","run","index.ts"]