{"id":18356340,"url":"https://github.com/adhirajcs/django-to-do","last_synced_at":"2026-04-12T04:32:02.351Z","repository":{"id":215121276,"uuid":"738186977","full_name":"adhirajcs/django-to-do","owner":"adhirajcs","description":"django-to-do is simple to do web app created using Django.","archived":false,"fork":false,"pushed_at":"2024-12-22T15:33:25.000Z","size":19806,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-15T17:43:28.795Z","etag":null,"topics":["django","django-admin","django-framework","django-project","django-todo","python","sqlite","sqlite3","todoapp","todolist"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/adhirajcs.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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-01-02T16:25:34.000Z","updated_at":"2024-12-22T15:33:33.000Z","dependencies_parsed_at":"2024-12-22T16:27:58.492Z","dependency_job_id":"36afc704-2ce1-4205-86a2-9474d94f5dbb","html_url":"https://github.com/adhirajcs/django-to-do","commit_stats":null,"previous_names":["adhirajcs/django-to-do"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/adhirajcs%2Fdjango-to-do","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/adhirajcs%2Fdjango-to-do/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/adhirajcs%2Fdjango-to-do/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/adhirajcs%2Fdjango-to-do/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/adhirajcs","download_url":"https://codeload.github.com/adhirajcs/django-to-do/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248142652,"owners_count":21054666,"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":["django","django-admin","django-framework","django-project","django-todo","python","sqlite","sqlite3","todoapp","todolist"],"created_at":"2024-11-05T22:09:49.963Z","updated_at":"2025-12-30T23:05:08.964Z","avatar_url":"https://github.com/adhirajcs.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# django-to-do\n\ndjango-to-do is a simple web application created using Django. It served me as a learning project for understanding and implementing Django functionalities.\n\n## Cloud Hosting\n\nThe application is hosted on PythonAnywhere. You can access it here: [adhiraj.pythonanywhere.com](https://adhiraj.pythonanywhere.com/).\n\n## Table of Contents\n\n- [Installation](#installation)\n- [Usage](#usage)\n- [Folder Structure](#folder-structure)\n- [Features](#features)\n- [License](#license)\n\n## Installation\n\n1. Clone the repository:\n    ```bash\n    git clone https://github.com/adhirajcs/django-to-do.git\n    cd django-to-do\n    ```\n\n2. Create a virtual environment:\n    ```bash\n    python -m venv venv\n    ```\n\n3. Activate the virtual environment:\n    - On Windows:\n        ```bash\n        venv\\Scripts\\activate\n        ```\n    - On macOS and Linux:\n        ```bash\n        source venv/bin/activate\n        ```\n\n4. Install the required dependencies:\n    ```bash\n    pip install -r requirements.txt\n    ```\n\n5. Apply migrations:\n    ```bash\n    python manage.py migrate\n    ```\n\n6. Run the development server:\n    ```bash\n    python manage.py runserver\n    ```\n\n7. Open your web browser and go to `http://127.0.0.1:8000/` to see the application in action.\n\n## Usage\n\n- **Home Page:** View and manage your to-do items.\n- **Add To-Do:** Use the form to add a new to-do item.\n- **Edit To-Do:** Edit an existing to-do item.\n- **Complete/Uncomplete To-Do:** Mark a to-do item as completed or uncompleted.\n- **Delete To-Do:** Remove a to-do item.\n\n## Folder Structure\n\nThe project directory structure is as follows:\n\n```\ndjango-to-do/\n│\n├── myapp/\n│ ├── migrations/\n│ ├── init.py\n│ ├── admin.py\n│ ├── apps.py\n│ ├── models.py\n│ ├── tests.py\n│ ├── urls.py\n│ └── views.py\n│\n├── templates/\n│ ├── base.html\n│ ├── edit.html\n│ ├── index.html\n│ ├── login.html\n│ ├── register.html\n│ └── ...\n│\n├── todo/\n│ ├── init.py\n│ ├── asgi.py\n│ ├── settings.py\n│ ├── urls.py\n│ └── wsgi.py\n│\n├── venv/\n│ └── ...\n│\n├── win_venv/\n│ └── ...\n│\n├── .gitignore\n├── db.sqlite3\n├── manage.py\n├── README.md\n└── requirements.txt\n```\n\n## Features\n\n- User authentication (Register, Login, Logout)\n- Add, edit, complete/uncomplete, and delete to-do items\n- Responsive design using Bootstrap\n\n\n## License\n\nThis project is licensed under the Apache License 2.0 - see the [LICENSE](LICENSE) file for details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fadhirajcs%2Fdjango-to-do","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fadhirajcs%2Fdjango-to-do","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fadhirajcs%2Fdjango-to-do/lists"}