Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .eslintcache

Large diffs are not rendered by default.

18 changes: 18 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"workbench.colorCustomizations": {
"activityBar.activeBackground": "#2A2051",
"activityBar.activeBorder": "#DADAEA",
"activityBar.background": "#6B3898",
"activityBar.foreground": "#DADAEA",
"activityBar.inactiveForeground": "#DADAEA",
"activityBarBadge.background": "#DADAEA",
"activityBarBadge.foreground": "#2A2051",
"statusBar.background": "#6B3898",
"statusBar.foreground": "#DADAEA",
"statusBarItem.hoverBackground": "#2A2051",
"titleBar.activeBackground": "#6B3898",
"titleBar.activeForeground": "#DADAEA",
"titleBar.inactiveBackground": "#6B3898",
"titleBar.inactiveForeground": "#C3B5C2"
},
}
1 change: 1 addition & 0 deletions Procfile
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
web: node server.js
112 changes: 68 additions & 44 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,46 +1,70 @@
# Getting Started with Create React App
# ArdU Maps
### Aplicação desenvolvida com ReactJS v17.0.1
![GitHub repo size](https://img.shields.io/github/repo-size/erickkf600/ArdU?style=for-the-badge)

Desenvolvimento de uma aplicação de mapas que é possível exiber e pesquisar os locais próximos, assim como as avaliações.

### Home

<img src="./src/assets/preview/inicio.PNG" alt="Prevew">

### Login / Register

<img src="./src/assets/preview/login.PNG" alt="Prevew">

### Ajustes e melhorias

O projeto ainda está em desenvolvimento e as próximas atualizações serão voltadas nas seguintes tarefas:

- [x] Tela de login / registro
- [x] Integração com a API https://reqres.in/
- [x] Editar Informaões / Logout
- [x] Integrar com API Google Maps / Places
- [x] Exibir Locais próximos no mapa
- [ ] Lista de locais próximos
- [ ] Salvar em favoritos
- [ ] Avaliar locais

## Iniciando o ArdU
- Clone o repositório
- Dentro da pasta clonada rode o commando
```
npm install
```
- finalizada a instalação, edite o arquivo `example.env.local` para `env.local` e insira o token do google API
- rode o comando
```
npm start
```
- Para logar, pode usar o usuário de testes
```
email: eve.holt@reqres.in
senha: cityslicka
```

## Libs Utilizadas

Aqui estão as libs que foram utilizadas neste projeto:

* redux
* node-sass
* sweetalert2
* normalize.css
* react-hook-form `<@hookform/resolvers & yup>`

## Responsável

<table>
<tr>
<td align="center">
<a href="#">
<img src="https://avatars3.githubusercontent.com/u/35529628" width="100px;" alt="Foto do Erick Ferreira no GitHub"/><br>
<sub>
<b>Erick Ferreira</b>
</sub>
</a>
</td>
</tr>
</table>

This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).

## Available Scripts

In the project directory, you can run:

### `npm start`

Runs the app in the development mode.\
Open [http://localhost:3000](http://localhost:3000) to view it in the browser.

The page will reload if you make edits.\
You will also see any lint errors in the console.

### `npm test`

Launches the test runner in the interactive watch mode.\
See the section about [running tests](https://facebook.github.io/create-react-app/docs/running-tests) for more information.

### `npm run build`

Builds the app for production to the `build` folder.\
It correctly bundles React in production mode and optimizes the build for the best performance.

The build is minified and the filenames include the hashes.\
Your app is ready to be deployed!

See the section about [deployment](https://facebook.github.io/create-react-app/docs/deployment) for more information.

### `npm run eject`

**Note: this is a one-way operation. Once you `eject`, you can’t go back!**

If you aren’t satisfied with the build tool and configuration choices, you can `eject` at any time. This command will remove the single build dependency from your project.

Instead, it will copy all the configuration files and the transitive dependencies (webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except `eject` will still work, but they will point to the copied scripts so you can tweak them. At this point you’re on your own.

You don’t have to ever use `eject`. The curated feature set is suitable for small and middle deployments, and you shouldn’t feel obligated to use this feature. However we understand that this tool wouldn’t be useful if you couldn’t customize it when you are ready for it.

## Learn More

You can learn more in the [Create React App documentation](https://facebook.github.io/create-react-app/docs/getting-started).

To learn React, check out the [React documentation](https://reactjs.org/).
5 changes: 5 additions & 0 deletions example.env.local
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@

# PROD -
# DEV -

REACT_APP_GOOGLE_MAPS_API_KEY=""
Loading