{"id":24493606,"url":"https://github.com/bigprogrammers/django-todo-app","last_synced_at":"2025-03-15T04:09:04.958Z","repository":{"id":269334647,"uuid":"907091184","full_name":"bigprogrammers/django-todo-app","owner":"bigprogrammers","description":"A beginner-friendly Django project to build a fully functional To-Do app. This repository includes a step-by-step implementation of models, views, templates, and CRUD operations, with a clean and user-friendly UI.","archived":false,"fork":false,"pushed_at":"2024-12-22T19:54:38.000Z","size":745,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-01-21T19:43:58.518Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/bigprogrammers.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-12-22T19:32:09.000Z","updated_at":"2024-12-22T19:54:41.000Z","dependencies_parsed_at":null,"dependency_job_id":"3dba3939-5066-4816-bdd0-41bbd1c29a90","html_url":"https://github.com/bigprogrammers/django-todo-app","commit_stats":null,"previous_names":["bigprogrammers/django-todo-app"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bigprogrammers%2Fdjango-todo-app","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bigprogrammers%2Fdjango-todo-app/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bigprogrammers%2Fdjango-todo-app/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bigprogrammers%2Fdjango-todo-app/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/bigprogrammers","download_url":"https://codeload.github.com/bigprogrammers/django-todo-app/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243681076,"owners_count":20330156,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-01-21T19:42:18.518Z","updated_at":"2025-03-15T04:09:04.951Z","avatar_url":"https://github.com/bigprogrammers.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Django To-Do App  \n\n## 📋 Overview  \nThis repository contains the source code for a simple To-Do application built with Django. The project demonstrates the use of Django's models, views, templates, and forms to perform CRUD (Create, Read, Update, Delete) operations. It's an ideal beginner-friendly project to learn and practice Django fundamentals.  \n\n---\n\n![Video](thumb.png.png)  \n\n\n## 🚀 Features  \n- Add new tasks  \n- View all tasks in a list  \n- Mark tasks as complete or incomplete  \n- Edit existing tasks  \n- Delete tasks  \n- User-friendly interface with Bootstrap  \n\n---\n\n## 🛠️ Tech Stack  \n- **Backend:** Django (Python)  \n- **Database:** SQLite (default Django database)  \n- **Frontend:** HTML, CSS, and Bootstrap  \n\n---\n\n## 📂 Project Structure  \n\n```plaintext\ndjango-todo-app/\n│\n├── todo/\n│   ├── migrations/         # Database migrations\n│   ├── templates/          # HTML templates for the app\n│   │   ├── base.html       # Base template for all pages\n│   │   ├── index.html      # Home page template\n│   │   └── form.html       # Template for adding/editing tasks\n│   ├── static/             # Static files (CSS, images, etc.)\n│   ├── models.py           # Task model definition\n│   ├── views.py            # Logic for handling requests and responses\n│   ├── urls.py             # URL routing for the app\n│   └── admin.py            # Django admin customization\n│\n├── manage.py               # Django project management script\n├── db.sqlite3              # SQLite database file\n├── requirements.txt        # Python dependencies\n└── README.md               # Project documentation\n```  \n\n---\n\n## ⚙️ Setup and Installation  \n\n### Prerequisites  \n- Python 3.x installed  \n- pip (Python package manager)  \n\n### Steps  \n1. Clone the repository:  \n   ```bash\n   git clone https://github.com/your-username/django-todo-app.git\n   cd django-todo-app\n   ```  \n\n2. Create a virtual environment:  \n   ```bash\n   python -m venv env\n   source env/bin/activate  # On Windows: env\\Scripts\\activate\n   ```  \n\n3. Install dependencies:  \n   ```bash\n   pip install -r requirements.txt\n   ```  \n\n4. Apply migrations:  \n   ```bash\n   python manage.py migrate\n   ```  \n\n5. Run the server:  \n   ```bash\n   python manage.py runserver\n   ```  \n\n6. Open your browser and navigate to:  \n   ```\n   http://127.0.0.1:8000\n   ```  \n\n---\n\n## 🖼️ Screenshots  \n### Home Page  \n![Home Page](Screenshot.png)  \n\n### Register\n![Add Task](register.png)  \n\n### Login\n![Add Task](login.png)  \n\n---\n\n## 🤝 Contributing  \nContributions are welcome! Here's how you can contribute:  \n1. Fork the repository  \n2. Create a feature branch:  \n   ```bash\n   git checkout -b feature-name\n   ```  \n3. Commit your changes:  \n   ```bash\n   git commit -m \"Add your message here\"\n   ```  \n4. Push to the branch:  \n   ```bash\n   git push origin feature-name\n   ```  \n5. Submit a pull request  \n\n---\n\n## 📜 License  \nThis project is licensed under the MIT License. See the `LICENSE` file for details.  \n\n---\n\n## ⭐ Acknowledgements  \n- Django documentation: [https://docs.djangoproject.com/](https://docs.djangoproject.com/)  \n- Bootstrap framework: [https://getbootstrap.com/](https://getbootstrap.com/)  \n\n---\n\n### 🌟 If you found this helpful, please give this repository a star!\n```  \n\nLet me know if there’s anything you’d like to add or modify!\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbigprogrammers%2Fdjango-todo-app","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbigprogrammers%2Fdjango-todo-app","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbigprogrammers%2Fdjango-todo-app/lists"}