Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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

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).