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

eatfast-website

user avatar
Aymeric Chaumont authored
c8c9c715
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