Following freeCodeCamp tutorial to reinforce my knowledge in Flask.
Will need to create a virtual environment and install required packages (assuming Python 3 is already installed and on Mac)
Commands:
- pip3 install virtualenv
- virtualenv env
- source env/bin/activate
- pip3 install flask flask-sqlalchemy
Start Server:
- python3 app.py