This is the companion app to some training I'm providing to developers on the Flask framework
Use these steps to get up and running
- Ensure you have Python 3.7 and pip installed
- Clone this repository
- Create a virtual environment with
python3 -m venv venv - From the root directory run
source venv/bin/activate - Install dependencies with
pip install -r requirements.txt - Start the application with
flask run - See the command line for the URL to visit
- When finished run
deactivatefrom the virtual environment