- Docker installed and running
cd backend
# Build the image
docker build -t hackhpi26-backend .
# Start the container
docker run -d -p 8080:8080 --name hackhpi26-backend hackhpi26-backendAccess:
- API: http://localhost:8080
- Swagger UI: http://localhost:8080/docs
- Health Check: http://localhost:8080/health
cd frontend/cula-verification
# Build the image
docker build -t hackhpi26-frontend .
# Start the container
docker run -d -p 3000:80 --name hackhpi26-frontend hackhpi26-frontendAccess: