Create a virtual environment
python -m venv venv
Activate the virtual environment depending on computer type
1. For Mac or Unix
source venv/bin/activate
2. For Windows
path\to\venv\Scripts\activate.bat
You need to install what is in the requirements.txt
pip install -r requirements.txt
Finally, to run the app
cd sandwich_site
python manage.py runserver
This is a basic sandwich app to demnostrate the hooking up of the front end and back end.
--Looping through mulitple menu items to create ALL the sandwiches for the menu.