Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/harikrishna-9885699666/django-sqlite-crud-operations
Django - SQlite CRUD Operations
https://github.com/harikrishna-9885699666/django-sqlite-crud-operations
Last synced: 2 days ago
JSON representation
Django - SQlite CRUD Operations
- Host: GitHub
- URL: https://github.com/harikrishna-9885699666/django-sqlite-crud-operations
- Owner: HariKrishna-9885699666
- Created: 2024-05-21T13:56:23.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2024-05-23T06:33:40.000Z (8 months ago)
- Last Synced: 2024-05-23T07:26:09.524Z (8 months ago)
- Language: Python
- Homepage: https://django-sqlite-crud-operations.onrender.com/
- Size: 28.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Django-SQLite-CRUD-Operations
Django - SQLite User Management## Live Demo
You can check out the live demo of the application here: [User Management Demo](https://django-sqlite-crud-operations.onrender.com/)
## Installation
```bash
mkdir storefront
cd storefront
pipenv install django
pipenv shell
django-admin startproject storefront .
python3 manage.py runserver 7000
python3 manage.py startapp users
```
- In VSCODE, view > command pallette > Then type Python: Select Interpreter. Then select pipenv related path.
- Update INSTALLED_APPS with "storefront" in settings.py```
pipenv install faker
pipenv install django-bootstrap5
```
- Update INSTALLED_APPS with "faker" and "django-bootstrap5" in settings.py```bash
python3 manage.py makemigrations users
python3 manage.py migrate
python3 create_superuser.py
python3 create_fakeusers.py
python3 manage.py runserver
```