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

eatfast-website

  • Clone with SSH
  • Clone with HTTPS
  • user avatar
    Aymeric Chaumont authored
    f41e23cc
    History
    Name Last commit Last update
    backend
    frontend
    .gitignore
    README.md
    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