Flask, Jinja, SQLAlchemy
Setting Up Open cmd and run the following commands:
-
python -m venv .venv(for Windows) /python3 -m venv .venv(for macOS) -
.venv\scripts\activate(for Windows) /source .venv/bin/activate(for macOS) -
pip install -r requirements.txt -
python app.py(to run the flask app)
Here's the Workshop Guide Doc to follow through
For the complete code, here's the GitHub Repository