This app is an endless user-based level and XP (experience points). It uses SQlite and SQLAlchemy to store user data in the database.
- Clone the repository.
- Install the requirements:
pip install -r requirements.txt
. - Run the app:
python app.py
. - Create a migration using
flask db init
. - Create a migration script using
flask db migrate
. - Apply the migration using
flask db upgrade
. - Run the app using
flask run
. - Open
localhost:8081
on your web browser.