Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/shourya1997/django-crud
This is a basic CRUD application made in Django and Django Rest Framework.
https://github.com/shourya1997/django-crud
django django-rest-framework python3 swagger-specification swagger-ui
Last synced: 25 days ago
JSON representation
This is a basic CRUD application made in Django and Django Rest Framework.
- Host: GitHub
- URL: https://github.com/shourya1997/django-crud
- Owner: shourya1997
- License: apache-2.0
- Created: 2020-01-12T04:55:34.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2022-12-08T03:25:41.000Z (about 2 years ago)
- Last Synced: 2024-10-21T05:19:46.096Z (2 months ago)
- Topics: django, django-rest-framework, python3, swagger-specification, swagger-ui
- Language: Python
- Homepage:
- Size: 42 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Django-Crud
This is a basic CRUD application made in Django and Django Rest Framework## How to install
```bash
$ git clone https://github.com/shourya1997/django-crud.git# create python virtual environment
$ python3 -m venv myenv
$ source myenv/bin/activate# -- developement requirements file
$ pip install -r requirements.txt```
## How to run
```bash
$ python manage.py runserver
```Then go to [127.0.0.1:8000](127.0.0.1:8000) in your browser.