https://github.com/sumitgirwal/todo-list
A simple todo list in django, bootstrap and htmx
https://github.com/sumitgirwal/todo-list
Last synced: 19 days ago
JSON representation
A simple todo list in django, bootstrap and htmx
- Host: GitHub
- URL: https://github.com/sumitgirwal/todo-list
- Owner: sumitgirwal
- Created: 2023-07-09T11:43:38.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2023-07-14T10:30:20.000Z (over 2 years ago)
- Last Synced: 2025-01-25T08:47:02.512Z (12 months ago)
- Language: Python
- Size: 10.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Todo-List
A simple todo list in django, bootstrap and htmx
Live Demo:

#### Built with
- Python
- Django Framework
- Htmx
- Bootstrap5
#### Installation & Setup
- Install virtual env
```bash
python -m pip install --user virtualenv
python -m venv venv
```
- Activate virtual env
```bash
.\venv\Scripts\activate
```
- Install packages
```bash
pip install -r requirements.txt
```
- Database migrations
```bash
python manage.py makemigrations
python manage.py migrate
```
- Run application
```bash
python manage.py runserver
```
- Hit url in browser
```bash
http://127.0.0.1:8000/
```