Major rewire, all modules connected. Intake still wonkey

This commit is contained in:
2025-11-28 15:14:47 -05:00
parent 7e34307b31
commit 50f95a1f59
19 changed files with 10109 additions and 4072 deletions
+18
View File
@@ -0,0 +1,18 @@
# relay/Dockerfile
FROM node:18-alpine
# Create app directory
WORKDIR /app
# Copy package.json and install deps first (better caching)
COPY package.json ./
RUN npm install
# Copy the rest of the app
COPY . .
# Expose port
EXPOSE 7078
# Run the server
CMD ["npm", "start"]