added repo

This commit is contained in:
2026-03-03 14:25:43 +00:00
commit 4328ada595
15 changed files with 2118 additions and 0 deletions

16
Dockerfile Normal file
View File

@@ -0,0 +1,16 @@
FROM oven/bun:1.3.5-alpine
WORKDIR /app
COPY package.json tsconfig.json ./
COPY src ./src
COPY scripts ./scripts
RUN mkdir -p /app/data
ENV PORT=3010
ENV DB_PATH=/app/data/mock-task-manager.sqlite
EXPOSE 3010
CMD ["bun", "src/index.ts"]