feat: 실시간 대기 번호표 웹앱 초기 커밋

PIN 기반 세션으로 관리자·발급기·표시판 3개 역할을 하나의 앱에서 운영.
Socket.IO 실시간 동기화, Podman Quadlet(10.89.0.25) 배포 구성 포함.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
gm
2026-06-26 10:56:15 +09:00
commit e45383f19f
8 changed files with 1832 additions and 0 deletions

12
Containerfile Normal file
View File

@@ -0,0 +1,12 @@
FROM node:20-alpine
WORKDIR /app
COPY package*.json ./
RUN npm ci --omit=dev
COPY server.js ./
COPY public/ ./public/
EXPOSE 3000
CMD ["node", "server.js"]