Initial commit of CK-QR Platform

This commit is contained in:
Mohan Ki
2026-07-27 13:42:18 +05:30
commit 60dcb029dc
19 changed files with 2582 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
FROM node:20-alpine
WORKDIR /app
COPY package*.json ./
RUN npm install
# Also install nodemon globally for dev hot-reloading
RUN npm install -g nodemon
COPY . .
EXPOSE 4001
EXPOSE 9229
CMD ["nodemon", "--inspect=0.0.0.0:9229", "server.js"]