- Clone this repo:
git clone <this repo's remote url> - Change directories:
cd restaurant - Create a virtual environment for this project and activate it:
mkdir env
python3 -m venv env
source env/bin/activate
- Install the requirements:
pip install -r requirements.txt - Run the application as needed:
python app.py
- Create and checkout a personal branch:
git checkout -b restaurant-<your name> - Push up your personal branch:
git push origin restaurant-<your name> - Make any changes and push it up to your branch:
git add -A
git commit -m "<commit message>"
git push origin restaurant-<your name>