Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lulunac27a/flask-endless-task-list-app
Task list application using Flask with level and experience points (XP)
https://github.com/lulunac27a/flask-endless-task-list-app
flask flask-app flask-application flask-sql flask-sqlalchemy python sql sqlalchemy task-list task-list-app tasklist todo todo-app todo-list todoapp todolist
Last synced: 13 days ago
JSON representation
Task list application using Flask with level and experience points (XP)
- Host: GitHub
- URL: https://github.com/lulunac27a/flask-endless-task-list-app
- Owner: lulunac27a
- License: mit
- Created: 2024-10-20T22:08:31.000Z (4 months ago)
- Default Branch: master
- Last Pushed: 2025-01-21T03:23:19.000Z (about 1 month ago)
- Last Synced: 2025-01-21T03:27:18.191Z (about 1 month ago)
- Topics: flask, flask-app, flask-application, flask-sql, flask-sqlalchemy, python, sql, sqlalchemy, task-list, task-list-app, tasklist, todo, todo-app, todo-list, todoapp, todolist
- Language: Python
- Homepage: https://lulunac27a.github.io/flask-endless-task-list-app/
- Size: 646 KB
- Stars: 4
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Flask Endless Task List Application with Levels and Experience Points (XP)
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.
## Getting Started
1. Clone the repository.
2. Install dependencies: `pip install -r requirements.txt`.
3. Set `SECRET_KEY` environment variable. On Windows: use `setx` command in Command Prompt like `setx SECRET_KEY "your_secret_key"`. On macOS and Linux: use `export` command in terminal like `export SECRET_KEY="your_secret_key"`.
4. Create a migration using `flask db init`.
5. Create a migration script using `flask db migrate`.
6. Apply the migration using `flask db upgrade`.
7. Run the app using `flask run`.
8. Open `localhost:8081` on your web browser.