- Install python3
python -m pip install flask
cd app
python main.py
- The website will be on
localhost
on port 80 by default
app
- the folder that has all of the code for the serverstatic
- static assets such as images and csstemplates
- Templates that generate the html viewsdata.py
- Classes and functions relating to our recipe datamain.py
- This is the file that has the code for our views
download_data.py
- code to download data from spoonacular with a valid api key
- Install Docker with
docker-compose
Check here - For the first time use
docker-compose build
in the root directory of this repo - To run the dev server just type
docker-compose up
into the terminal