Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/harikrishna-9885699666/django-postgresql-todo-operations
- Owner: HariKrishna-9885699666
- Created: 2024-05-23T08:53:03.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2024-05-28T13:05:05.000Z (8 months ago)
- Last Synced: 2024-05-29T04:38:48.996Z (8 months ago)
- Topics: bootstrap5, django, postgresql
- Language: Python
- Homepage: https://django-postgresql-todo-operations.onrender.com/
- Size: 300 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```