attendance-flask-mini-app/README.md
2022-07-28 01:42:30 -05:00

17 lines
322 B
Markdown

# Sample application for verifying attendance through a unique QR code
To run in a Python virtual environment, using **Flask**:
```bash
mkvenv flask
venv flask
pip install Flask Flask-QRcode Flask-UUID
```
To create an empty `database.db` sqlite file with the table described in
`schema.sql`:
```bash
./init_db.py
```