Web interface merge #1

Merged
max merged 9 commits from web-interface into main 2026-08-05 08:56:17 +04:00
2 changed files with 1 additions and 17 deletions
Showing only changes of commit ea49920a12 - Show all commits
+1
View File
@@ -6,3 +6,4 @@ dist/
test_data/
venv/
web/frontend/node_modules
TODO.md
-17
View File
@@ -1,17 +0,0 @@
FROM node:20-alpine
# Set working directory
WORKDIR /app
# Install dependencies
COPY package.json package-lock.json* ./
RUN npm install
# Copy the application code
COPY . .
# Expose the port
EXPOSE 5173
# Start the development server
CMD ["npm", "run", "dev", "--", "--host", "0.0.0.0"]