https://github.com/bezkoder/django-rest-api-mysql
Python/Django CRUD with MySQL example that uses Django Rest Framework for building Rest Apis
https://github.com/bezkoder/django-rest-api-mysql
Last synced: 11 months ago
JSON representation
Python/Django CRUD with MySQL example that uses Django Rest Framework for building Rest Apis
- Host: GitHub
- URL: https://github.com/bezkoder/django-rest-api-mysql
- Owner: bezkoder
- Created: 2020-03-26T09:31:33.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2020-12-08T10:56:08.000Z (about 5 years ago)
- Last Synced: 2025-03-28T10:47:37.938Z (11 months ago)
- Language: Python
- Size: 4.88 KB
- Stars: 34
- Watchers: 3
- Forks: 28
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Django Restful CRUD API with MySQL example
For more detail, please visit:
> [Django CRUD with MySQL example | Django Rest Framework](https://bezkoder.com/django-crud-mysql-rest-framework/)
Full-stack CRUD App:
> [Django + Vue.js](https://bezkoder.com/django-vue-js-rest-framework/)
> [Django + React.js](https://bezkoder.com/django-react-axios-rest-framework/)
> [Django + Angular](https://bezkoder.com/django-angular-10-crud-rest-framework/)
## Running the Application
Create the DB tables first:
```
python manage.py migrate
```
Run the development web server:
```
python manage.py runserver 8080
```
Open the URL http://localhost:8080/ to access the application.