- API - Python app running on port 8000
- Web - React app, served by the Python webserver
# Build React app assets first
./build_web.sh
podman build -t localhost/jdobes/lunch:latest .
podman run --rm -p 8000:8000 localhost/jdobes/lunch:latest
- Main page - http://localhost:8000/
- Swagger UI for API - http://localhost:8000/api/
# Re-install dependencies and re-generate lock file
rm -rf node_modules package-lock.json
npm install
# Run the API
podman run --rm -p 8000:8000 localhost/jdobes/lunch:latest
# Start node devel server
npm start