Skip to content

Latest commit

 

History

History
37 lines (24 loc) · 492 Bytes

README.md

File metadata and controls

37 lines (24 loc) · 492 Bytes

Cookbook

A personal recipe management and meal planner app.

Development

  1. Install backend dependencies.
cd backend
pip install .
  1. Run the app in development mode.
fastapi dev app/main.py
  1. Navigate to http://localhost:8000.

Docker

  1. Build the Docker image.
cd backend
docker build -t cookbook:local .
  1. Run the Docker container.
docker run --rm -it -p 8000:80 cookbook:local
  1. Navigate to http://localhost:8000.