Skip to content

Commit

Permalink
readme terminado
Browse files Browse the repository at this point in the history
  • Loading branch information
gustavorw committed Dec 8, 2020
1 parent 01bef8d commit 288049a
Showing 1 changed file with 46 additions and 4 deletions.
50 changes: 46 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,49 @@
# iPlaces
Nesse repositório há uma API e um aplicativo. O objetivo é listar as paisagens de cidades de todo o mundo .


## Tecnologias
Este projeto usa as seguintes tecnologias:
- [Flutter][https://flutter.dev/web]
- [Django][https://www.djangoproject.com/]
- [Django RestFramework][https://www.django-rest-framework.org/]
Este projeto usa as seguintes tecnologias :
- [Flutter](https://flutter.dev/web)
- [Django](https://www.djangoproject.com/)
- [Django RestFramework](https://www.django-rest-framework.org/)

## Projeto

### <strong>Aplicativo</strong>


Screenshot 01 | Screenshot 02
:-------------------------:|:-------------------------:
<image src="app\flutter_02.png"></image> | <image src="app\flutter_03.png"></image>


### <strong>API</strong>
```
- Criar lugar : https://iphotos.herokuapp.com/api/places
{
"name": "nome",
"city": "cidade",
"photo_url": "url da imagem"
}
```
```
- Buscar lugares: https://iphotos.herokuapp.com/api/places
[
{
"id": 1,
"name": "Alps",
"city": "Alps",
"photo_url": "https://i.pinimg.com/564x/33/c1/64/33c1642fc6dc5975455d8381460f0a76.jpg"
},
{
"id": 2,
"name": "Nova Zelândia",
"city": "Nova Zelândia",
"photo_url": "https://i.pinimg.com/564x/f7/ed/0a/f7ed0a53b8dd066d18868a870caa9d50.jpg"
}
]
```

0 comments on commit 288049a

Please sign in to comment.