├── Procfile ├── project ├── persistence.py ├── template │ ├── profile.html │ ├── index.html │ ├── items.html │ ├── login.html │ ├── signup.html │ └── base.html ├── models.py ├── main.py ├── queries.py ├── commands.py ├── __init__.py └── auth.py ├── manifest.yml ├── Pipfile ├── requirements.txt ├── README.md ├── run-via-docker.sh ├── .github └── workflows │ ├── pr.yml │ ├── sbom.yml │ ├── main.yml │ └── codeql-analysis.yml ├── LICENSE.md ├── docs └── SBOM.md └── Pipfile.lock /Procfile: -------------------------------------------------------------------------------- 1 | web: gunicorn "project:create_app()" -------------------------------------------------------------------------------- /project/persistence.py: -------------------------------------------------------------------------------- 1 | from flask_sqlalchemy import SQLAlchemy 2 | 3 | db = SQLAlchemy() -------------------------------------------------------------------------------- /project/template/profile.html: -------------------------------------------------------------------------------- 1 | {% extends "base.html" %} 2 | 3 | {% block content %} 4 |
No {{ title.lower() }} prepared.
14 | {% endif %} 15 | {% for i in items %} 16 |