This app is an endless task list application with levels and experience points (XP). It uses SQLAlchemy to store user and task list data to the database.
- Clone the repository.
- Install dependencies:
pip install -r requirements.txt
. - Set
SECRET_KEY
environment variable. On Windows: usesetx
command in Command Prompt likesetx SECRET_KEY "your_secret_key"
. On macOS and Linux: useexport
command in terminal likeexport SECRET_KEY="your_secret_key"
. - Run the app:
python app.py
. - Open
localhost:8081
on your web browser.