DEV Community

Mark Odera
Mark Odera

Posted on • Edited on

Django Task Manager: Built in a Day with Django

Built in a Day with Django

Introduction

Hey Dev.to community! πŸ‘‹I built a task manager app in one day for the Dev.to Django Challenge. My aim was to explore Django’s capabilities while creating something functional.

Features βœ…

Authentication & CRUD for tasks

Prioritization & due dates

Search and filter options

Responsive design

Tech Stack πŸ› οΈ

Django 4.x

Python 3.x

Bootstrap 5

SQLite3

Setup πŸš€

Clone repo:

git clone https://github.com/markodera/freshstart-taskmanager.git
cd freshstart-taskmanager

Activate virtual environment:

python -m venv venv && source venv/bin/activate

Install dependencies:

pip install -r requirements.txt

Run migrations and server:

python manage.py migrate && python manage.py runserver

Lessons Learned ✍️

Plan first.

Focus on essentials.

Leverage Django’s built-in tools.

Closing Thoughts

Django is amazing for quick, powerful builds. Try a similar challengeβ€”you’ll learn a ton!

GitHub Repo:Β https://github.com/markodera/freshstart-taskmanager.gitΒ πŸ™Œ

Top comments (0)