TaskFlow is an open-source task management application designed to help individuals and teams organize their work efficiently.
- Create, update, and delete tasks
- Organize tasks with priorities and due dates
- Track task progress
- User authentication and authorization
- Team collaboration features
Coming soon
- Python 3.8 or higher
- pip (Python package installer)
- Git
- Clone the repository:
git clone https://github.com/kiaranhurley/TaskFlow.git
cd TaskFlow
- Create a virtual environment and activate it:
python -m venv venv
source venv/bin/activate # On Windows: venv\Scripts\activate
- Install the dependencies:
pip install -r requirements.txt
-
Initialize the database
flask db init flask db migrate -m "Initial migration" flask db upgrade
-
Run the application:
python app.py
- Open your browser and navigate to
http://localhost:5000
- Backend: Python, Flask
- Database: SQLite (for development), PostgreSQL (for production)
- ORM: SQLAlchemy with Flask-SQLAlchemy
- Frontend: HTML, CSS, JavaScript
- CSS Framework: Bootstrap 5
- Authentication: Flask-Login
- Form Handling: Flask-WTF
- Testing: pytest
TaskFlow/
├── app/ # Application package
│ ├── static/ # Static files (CSS, JS, images)
│ ├── templates/ # HTML templates
│ ├── __init__.py # Application factory
│ ├── models.py # Database models
│ ├── routes.py # Route definitions
│ └── forms.py # Form definitions
├── migrations/ # Database migrations
├── tests/ # Test suite
├── .github/ # GitHub specific files
├── .gitignore # Git ignore file
├── LICENSE # MIT License
├── README.md # This file
├── CONTRIBUTING.md # Contribution guidelines
├── CODE_OF_CONDUCT.md # Code of conduct
├── requirements.txt # Project dependencies
└── app.py # Application entry point
Follow the installation steps above to set up your development environment.
pytest
This project follows the PEP 8 style guide for Python code. We use flake8 for linting:
flake8 .
Coming soon
Please read CONTRIBUTING.md for details on our code of conduct and the process for submitting pull requests.
This project is licensed under the MIT License - see the LICENSE file for details.
- Flask documentation and community
- Bootstrap team for the CSS framework
- All our contributors
Project Link: https://github.com/kiaranhurley/TaskFlow