A lottery drawing application that randomly draws numbers from 1 to 99, and displays them on a table.
Create a virtual environment and install the requirements.
source venv/bin/activate
pip install -r requirements.txt
Init the database and run the application.
export FLASK_APP="application.app"
export FLASK_DEBUG=True
export DATABASE_URL=sqlite:///../db.sqlite3
flask init-db
flask run