Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 6793e3d

Browse files
committedNov 26, 2018
2 parents 615026b + a826db9 commit 6793e3d

File tree

2 files changed

+87
-13
lines changed

2 files changed

+87
-13
lines changed
 

‎README.md

+73-12
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,92 @@
1-
# valorize-vidas
1+
[![Open Source Love](https://badges.frapsoft.com/os/v1/open-source.png?v=103)](https://github.com/ellerbrock/open-source-badges/)
2+
3+
4+
# Valorize Vidas
5+
6+
Este é um projeto para reescrever os sistemas atuais de prevenção ao suicídio da CVV.
7+
8+
## Como começar
9+
10+
Abaixo estão as instruções de como utilizar o projeto em ambiente de desenvolvimento e produção.
11+
12+
### Pré Requisitos
13+
14+
O que é necessário para rodar o projeto ?
215

3-
## Project setup
416
```
5-
npm install
17+
Node.Js 8.x
618
```
719

8-
### Compiles and hot-reloads for development
20+
### Instalando
21+
22+
Para rodar o projeto em ambiente de desenvolvimento, basta executarr os passos abaixo
23+
24+
Faça a instalação das dependências
25+
926
```
10-
npm run serve
27+
npm run install
1128
```
1229

13-
### Compiles and minifies for production
30+
Faça a execução do projeto:
31+
1432
```
15-
npm run build
33+
npm run serve
1634
```
1735

18-
### Lints and fixes files
36+
Feito isso, você poderá acessar a aplicação no endereço 'localhost:8080'.
37+
38+
## Rodando os testes
39+
40+
Para rodar os testes unitários, basta executarr o comando abaixo:
41+
1942
```
20-
npm run lint
43+
npm run test:unit
2144
```
2245

23-
### Run your unit tests
46+
### Rodando os testes de integração
47+
48+
Para rodar os testes e2e, basta executar o comndo abaixo:
49+
2450
```
25-
npm run test:unit
51+
npm run test:e2e
2652
```
2753

28-
### Run your end-to-end tests
54+
### Rodando o eslint
55+
56+
Para rodar o eslint, basta executar o comndo abaixo:
57+
2958
```
3059
npm run test:e2e
3160
```
61+
62+
### Style Guide
63+
64+
Neste projeto, utilizamos o style guide baseado no [airbnb](https://github.com/airbnb/javascript).
65+
66+
67+
### Para compilar e minificar arquivos para produção
68+
```
69+
npm run build
70+
```
71+
72+
## Contruído com
73+
74+
* [Bulma](https://bulma.io/) - Framework de UI components
75+
* [Vue](https://vuejs.org/) - Framework de renderização
76+
* [Sass](https://rometools.github.io/rome/) - Framework de estilos
77+
78+
## Contribuição
79+
80+
Por favor leia o [CONTRIBUTING.md](https://gist.github.com/PurpleBooth/b24679402957c63ec426) para mais detalhe do processo de produção, dúvidas ou sugestões, enviar via pull request.
81+
82+
## Versionamento
83+
84+
Nós utilizamos o [GitFlow](https://medium.com/trainingcenter/utilizando-o-fluxo-git-flow-e63d5e0d5e04) para o versionamento. Para utilizar versões anteriores veja as [tags neste repositorio](https://github.com/valorizevidas/valorize-vidas/tags).
85+
86+
## Contribuidores
87+
88+
89+
## Licensa
90+
91+
Este projeto utiliza a licença MIT - olhe no arquivo [LICENSE.md](LICENSE.md) para mais detalhes.
92+

‎package.json

+14-1
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,27 @@
11
{
22
"name": "valorize-vidas",
33
"version": "0.1.0",
4-
"private": true,
4+
"author": "ValorizeVidas",
55
"scripts": {
66
"serve": "vue-cli-service serve",
77
"build": "vue-cli-service build",
88
"lint": "vue-cli-service lint",
99
"test:unit": "vue-cli-service test:unit",
1010
"test:e2e": "vue-cli-service test:e2e"
1111
},
12+
"repository": {
13+
"type": "git",
14+
"url": "git+https://github.com/ValorizeVidas/valorize-vidas.git"
15+
},
16+
"homepage": "https://github.com/ValorizeVidas/valorize-vidas#readme",
17+
"keywords": [
18+
"social",
19+
"suicide",
20+
"depression",
21+
"help",
22+
"opensource",
23+
"health"
24+
],
1225
"dependencies": {
1326
"vue": "^2.5.17",
1427
"vue-router": "^3.0.1"

0 commit comments

Comments
 (0)
Failed to load comments.