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

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

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.