initial commit

This commit is contained in:
cottongin
2025-10-30 04:27:43 -04:00
commit 2db707961c
34 changed files with 3487 additions and 0 deletions

22
backend/Dockerfile Normal file
View File

@@ -0,0 +1,22 @@
FROM node:18-alpine
WORKDIR /app
# Copy package files
COPY package*.json ./
# Install dependencies
RUN npm ci --only=production
# Copy application files
COPY . .
# Create data directory for SQLite database
RUN mkdir -p /app/data
# Expose port
EXPOSE 5000
# Start the application
CMD ["node", "server.js"]