Skip to content

Commit

Permalink
projeto reestruturado utilizando react.js
Browse files Browse the repository at this point in the history
  • Loading branch information
dededavida committed Oct 31, 2020
1 parent 3a3e503 commit 6a0ddd9
Show file tree
Hide file tree
Showing 42 changed files with 13,286 additions and 233 deletions.
File renamed without changes
23 changes: 23 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
/node_modules
/.pnp
.pnp.js

# testing
/coverage

# production
/build

# misc
.DS_Store
.env.local
.env.development.local
.env.test.local
.env.production.local

npm-debug.log*
yarn-debug.log*
yarn-error.log*
46 changes: 35 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
<p align="center">
<img src="logo.png">
<img src=".github/logo.svg">
</p>

# Psicohelp 💛

A Psicohelp é uma plataforma open-source, mantida pela comunidade da perifaCode para encontrar assistência psicológica de baixo custo e/ou gratuitas.

## Layout 👩🏼‍🎨
Expand All @@ -11,21 +12,44 @@ Todo o layout do projeto está hospedado no Figma e pode ser acessado clicando [

---

# Em desenvolvimento 🚧

## Tecnologias utilizadas 💻

- React.JS
- Styled Components
- React Router
- Unform
- Axios
- Yup
- Javascript
- HTML
- CSS
- Javascript
- PHP
- Sass
- Gulp.js

## Pré-requisitos

Antes de começar, você vai precisar ter instalado em sua máquina as seguintes ferramentas:
[Git](https://git-scm.com), [Node.js](https://nodejs.org/en/), [React.js](https://pt-br.reactjs.org/) e [Styled Components](https://styled-components.com/). Além disto é bom ter um editor para trabalhar com o código como [VSCode](https://code.visualstudio.com/).

## Rodando aplicação Web 🎲

```bash
# Clone este repositório
$ git clone <https://github.com/perifacode/psicohelp>

# Acesse a pasta do projeto no terminal/cmd
$ cd psicohelp

# Instale as dependências
$ yarn install

## Setup inicial do projeto 🚧
# Execute a aplicação
$ yarn start
```

Para poder começar a contribuir com o projeto, você precisa ter instalado em sua máquina.
## 🤔 Como contribuir

- `PHP 7.x`
- `Apache ou outro servidor web`
- `Node 12.x`
- `NPM ou Yarn`
- Faça um fork desse repositório;
- Cria uma branch com a sua feature: `git checkout -b minha-feature`;
- Faça commit das suas alterações: `git commit -m 'feat: Minha nova feature'`;
- Faça push para a sua branch: `git push origin minha-feature`.
91 changes: 0 additions & 91 deletions css/main.css

This file was deleted.

1 change: 0 additions & 1 deletion css/main.css.map

This file was deleted.

30 changes: 0 additions & 30 deletions css/scss/_base.scss

This file was deleted.

29 changes: 0 additions & 29 deletions css/scss/_components.scss

This file was deleted.

41 changes: 0 additions & 41 deletions css/scss/_layout.scss

This file was deleted.

4 changes: 0 additions & 4 deletions css/scss/main.scss

This file was deleted.

26 changes: 0 additions & 26 deletions index.html

This file was deleted.

Binary file removed logo.png
Binary file not shown.
43 changes: 43 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
{
"name": "psicohelp",
"version": "0.1.0",
"private": true,
"dependencies": {
"@material-ui/core": "^4.11.0",
"@unform/core": "^2.1.3",
"@unform/web": "^2.1.3",
"axios": "^0.21.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-router-dom": "^5.2.0",
"react-scripts": "4.0.0",
"react-select": "^3.1.0",
"react-toastify": "^6.0.9",
"styled-components": "^5.2.0",
"yup": "^0.29.3"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}
Empty file removed pages/register.html
Empty file.
Empty file removed pages/search-results.html
Empty file.
Binary file added public/favicon.ico
Binary file not shown.
31 changes: 31 additions & 0 deletions public/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="icon" href="%PUBLIC_URL%/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#000000" />
<meta
name="description"
content="Web site created using create-react-app"
/>
<link rel="apple-touch-icon" href="%PUBLIC_URL%/logo192.png" />
<link rel="manifest" href="%PUBLIC_URL%/manifest.json" />

<link
href="https://fonts.googleapis.com/css2?family=Rubik:wght@400;600;800&display=swap"
rel="stylesheet"
/>

<link
href="https://fonts.googleapis.com/css2?family=Fredoka+One&display=swap"
rel="stylesheet"
/>

<title>React App</title>
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root"></div>
</body>
</html>
Binary file added public/logo192.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/logo512.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 6a0ddd9

Please sign in to comment.