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

eatfast-website

  • Clone with SSH
  • Clone with HTTPS
  • user avatar
    Antoine Gaudron-desjardins authored
    ff8a1329
    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