Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/the-akira/django-rest-tutorial
Neste guia vamos desenvolver uma REST API com o framework Django REST
https://github.com/the-akira/django-rest-tutorial
django django-application django-rest-framework movies python3 rest-api restful-api
Last synced: 1 day ago
JSON representation
Neste guia vamos desenvolver uma REST API com o framework Django REST
- Host: GitHub
- URL: https://github.com/the-akira/django-rest-tutorial
- Owner: the-akira
- Created: 2020-03-26T08:55:11.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2021-09-24T03:42:13.000Z (about 3 years ago)
- Last Synced: 2023-03-03T05:47:17.867Z (over 1 year ago)
- Topics: django, django-application, django-rest-framework, movies, python3, rest-api, restful-api
- Language: Python
- Size: 17.6 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Django REST API Tutorial
Neste guia vamos desenvolver uma REST API com o framework Django REST.
**[Leia o Tutorial](https://akiradev.netlify.app/posts/django-rest-api/)**
---
## Instalação
### Clone o Repositório
```
git clone https://github.com/the-akira/Django-REST-Tutorial.git
```### Dentro do Diretório Principal
Crie um Ambiente Virtual
```
python -m venv myvenv
```Ative o Ambiente Virtual
```
source myvenv/bin/activate
```Instale os Requeriments
```
pip install -r requirements.txt
```Sincronize o banco de dados
```
python manage.py migrate
```Execute a aplicação
```
python manage.py runserver
```Faça [Requisições](https://github.com/the-akira/Django-REST-Tutorial/blob/master/requests.md).