first commit

This commit is contained in:
2026-01-13 22:55:46 +01:00
parent 3a3b0b046d
commit 2faf2dd8dc
31 changed files with 8490 additions and 0 deletions

15
server/Dockerfile Normal file
View File

@@ -0,0 +1,15 @@
FROM node:22
WORKDIR /app
COPY package*.json ./
RUN npm install
COPY . .
# Create data directory
RUN mkdir -p data
EXPOSE 3000
CMD ["node", "index.js"]