An example project as part of a resource i am developing for new web developers
The resource is under development and currently visible here via Notion
Supplyify Live Link: https://www.supplyify.org
Structured as a Flask API serving HTML, just run app.py and visit your localhost. You will just need to create a virtual environment with project dependencies first!
(using zsh on macOS)
# from the app/ directory
python3 -m venv .venv
source .venv/bin/activate
pip install -r requirements.txtfrom here run the app using your IDE or from your terminal
python3 app.pyUtilizing SQLite!
Download from their site and use the CLI to interact with the db file like
sqlite3 supplify.db
.schema