https://github.com/asiwomex/django-todo-api
A simple todo api, made with django
https://github.com/asiwomex/django-todo-api
django todoapi todolist
Last synced: about 1 year ago
JSON representation
A simple todo api, made with django
- Host: GitHub
- URL: https://github.com/asiwomex/django-todo-api
- Owner: Asiwomex
- License: mit
- Created: 2024-06-01T19:35:11.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2025-02-24T12:17:06.000Z (about 1 year ago)
- Last Synced: 2025-02-24T12:39:45.397Z (about 1 year ago)
- Topics: django, todoapi, todolist
- Language: Python
- Homepage:
- Size: 15.3 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# This is a simple Django todo app
This README provides instructions on setting up and running your Django Todo app locally.

**Prerequisites:**
* Python 3 (Download from [https://www.python.org/downloads/](https://www.python.org/downloads/))
* pip (Installed with Python 3)
**Installation:**
1. **Clone the repository:**
```bash
git clone https://.git
```
2. **Create a virtual environment (recommended):**
```bash
python -m venv venv # or virtualenv venv
source venv/bin/activate # or . venv/bin/activate (Windows)
```
3. **Install dependencies:**
```bash
pip install -r requirements.txt
```
## **Running the App:**
1. **Run migrations (Optional):**
```bash
python manage.py makemigrations
python manage.py migrate
```
2. **Start the development server:**
```bash
python manage.py runserver
```
This will typically launch the server on `http://localhost:8000`.
3. **Access the application:**
Open your web browser and navigate to `http://localhost:8000` to see your Django Todo app running.