Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kiminzajnr/django_todo_app
ToDo App built with Django
https://github.com/kiminzajnr/django_todo_app
Last synced: 16 days ago
JSON representation
ToDo App built with Django
- Host: GitHub
- URL: https://github.com/kiminzajnr/django_todo_app
- Owner: kiminzajnr
- License: mit
- Created: 2024-04-15T11:47:57.000Z (9 months ago)
- Default Branch: master
- Last Pushed: 2024-04-27T12:24:39.000Z (9 months ago)
- Last Synced: 2024-11-09T16:16:17.922Z (2 months ago)
- Language: Python
- Size: 80.1 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# django_todo_app
A todo application built with Django and styled with the Bulma CSS framework.
## Features
- Add tasks
- Edit tasks
- Delete tasks
- Responsive design with Bulma CSS framework## Installation
1. Clone the repository:
```bash
git clone https://github.com/kiminzajnr/django_todo_app.git2. cd django_todo_app
```bash
cd django_todo_app3. Create and activate virtual env
```bash
python3 -m venv venv
source venv/bin/activate # For Linux/macOS
venv\Scripts\activate # For Windows4. Install dependencies
```bash
pip install -r requirements.txt5. Run database migrations
```bash
python3 manage.py migrate6. Start development server
```bash
python3 manage.py runserver7. Open your web browser and go http://127.0.0.1:8000/ to view the app
## Screenshots
![app_image](/django_todo.png)
## License
[MIT License](/LICENSE)