Check out the post.
-
Fork/Clone
-
Run the server-side FastAPI app in one terminal window:
$ cd backend $ python3 -m venv venv $ source venv/bin/activate (venv)$ pip install -r requirements.txt (venv)$ python main.py
Navigate to http://localhost:8000
API documentation http://localhost:8000/docs
-
Run the client-side React app in a different terminal window:
$ cd frontend $ npm install $ npm run startNavigate to http://localhost:3000