Initial commit: Due Diligence Tracker project

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Alexander Domene
2025-09-28 10:14:13 +02:00
commit b056725f02
58 changed files with 12011 additions and 0 deletions

20
client/Dockerfile Normal file
View File

@@ -0,0 +1,20 @@
# Use Node.js 18 alpine image
FROM node:18-alpine
# Set working directory
WORKDIR /app
# Copy package files
COPY package*.json ./
# Install dependencies
RUN npm ci
# Copy source code
COPY . .
# Expose port 5173
EXPOSE 5173
# Start development server
CMD ["npm", "run", "dev", "--", "--host", "0.0.0.0"]