Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/harikrishna-9885699666/django-postgresql-todo-operations

Django PostgreSQL Todo Operations
https://github.com/harikrishna-9885699666/django-postgresql-todo-operations

bootstrap5 django postgresql

Last synced: 2 days ago
JSON representation

Django PostgreSQL Todo Operations

Awesome Lists containing this project

README

        

# Django-PostgreSQL-Todo-Application
Django - PostgreSQL Todo Application

## Live Demo

You can check out the live demo of the application here: [Todo Application Demo](https://django-postgresql-todo-operations.onrender.com/)

## Installation

```bash
mkdir todo
cd todo
pipenv install django
pipenv shell
django-admin startproject todo .
python3 manage.py runserver 7000
python3 manage.py startapp todoplayground
```
- In VSCODE, view > command pallette > Then type Python: Select Interpreter. Then select pipenv related path.
- Update INSTALLED_APPS with "todoplayground" in settings.py

```
pipenv install faker
pipenv install django-bootstrap5
pipenv install psycopg2-binary
pipenv install python-dotenv
```

```bash
python3 manage.py makemigrations
python3 manage.py migrate
python3 create_dummy_tasks.py
python3 manage.py runserver
```