Skip to content
Snippets Groups Projects
Select Git revision
  • c8c9c715213eb3e520666f074a993ab41d874e77
  • main default
2 results

README.md

Blame
  • user avatar
    Aymeric Chaumont authored
    f41e23cc
    History
    README.md 491 B
    1. Run the server-side FastAPI app in one terminal window:

      $ cd backend
      $ python3.9 -m venv env
      $ source env/bin/activate
      (env)$ pip install -r requirements.txt
      (env)$ python main.py

      Navigate to http://localhost:8000

    2. Run the client-side React app in a different terminal window:

      $ cd frontend
      $ npm install
      $ npm run start

      Navigate to http://localhost:3000