feature-ner-keyword-detect #1

Merged
tigeren merged 35 commits from feature-ner-keyword-detect into main 2025-07-20 13:44:00 +00:00
2 changed files with 0 additions and 37 deletions
Showing only changes of commit 329610088d - Show all commits

View File

@ -1,18 +0,0 @@
FROM node:18-alpine
WORKDIR /app
# Copy package files
COPY package*.json ./
# Install dependencies
RUN npm install
# Copy source code
COPY . .
# Expose port 3000 for development server
EXPOSE 3000
# Start development server
CMD ["npm", "start"]

View File

@ -17,25 +17,6 @@ services:
networks:
- app-network
# Development service with hot reloading
frontend-dev:
build:
context: .
dockerfile: Dockerfile.dev
ports:
- "3000:3000"
volumes:
- .:/app
- /app/node_modules
env_file:
- .env
environment:
- NODE_ENV=development
# Add your development environment variables here
# - REACT_APP_API_URL=http://localhost:8000
command: npm start
networks:
- app-network
networks:
app-network: