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: about 2 months 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 (about 5 years ago)
- Default Branch: master
- Last Pushed: 2023-04-21T20:53:40.000Z (about 2 years ago)
- Last Synced: 2025-01-18T18:46:38.622Z (3 months ago)
- Topics: django, django-application, django-rest-framework, movies, python3, rest-api, restful-api
- Language: Python
- Size: 18.6 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
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).