feat: exercise cards webapp with AI workflow and editor

This commit is contained in:
2026-03-08 07:36:37 +01:00
commit 805ae9c88e
11 changed files with 2494 additions and 0 deletions

9
Dockerfile Normal file
View File

@@ -0,0 +1,9 @@
FROM node:20-slim
WORKDIR /app
COPY package*.json ./
RUN npm install --production
COPY src ./src
COPY public ./public
ENV PORT=8097
EXPOSE 8097
CMD ["node", "src/server.js"]