Initial commit: Production-ready KoalaSync Monorepo with Manifest V3, Socket.IO Relay, and Two-Phase Sync

This commit is contained in:
MacBook
2026-04-21 07:49:37 +02:00
commit 14033244e5
27 changed files with 3068 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
FROM node:20-alpine
WORKDIR /app
# Copy shared protocol first
COPY shared/ ./shared/
# Copy server
COPY server/package*.json ./server/
RUN cd server && npm install --production
COPY server/ ./server/
WORKDIR /app/server
CMD ["node", "index.js"]