Skip to content
This repository has been archived by the owner on Jan 30, 2023. It is now read-only.

Commit

Permalink
Merge pull request #1 from eduqg/master
Browse files Browse the repository at this point in the history
Update changes
  • Loading branch information
SamuelsSantos committed Oct 13, 2019
2 parents a70a558 + 6da6903 commit 5ff0e8f
Show file tree
Hide file tree
Showing 30 changed files with 441 additions and 345 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Expand Up @@ -17,7 +17,7 @@ deploy:
api_key:
secure: JsqngKb4yvlf9QP9U8hmt3yvvu8SWxH+F/7ENJWpe90L6/Qoh/wktwixmQO/3OZt/szv+Hq9lI6BbNf6M47LEotUxURnjgcmuORnnNlkHjvRbOxMRdKPXz8lmFNZIQ5PsPdedi9M7bE5uELqBz12X5l8ZzbQssbi+M1Y0K2eicLMw8Mh35uXoq0IucxrEZzQ0UUeEH8XFBncEh143XK3S0frmAogm/5zgOrK2Imfbo7FVeJuiv+laQMkk39bfV6H34bKXv1X1lIRnlawAQaGDWofuBR+sPrPcvKOpDSAL1G4Dqsf5mmHrXYLpMDcq5V3vglmqnDpur7hlx434bmFCPoDWVJrWi/k1+YreXk3T0puZCnV1SHBSaMfnRhAQGCZ5CiU8E6GKfBbSrESTokKyPOprDaOxoE/qtRMWgbQWDfF1M+oYAldmPfIlD+Bg4YFqNmISEYSMBsXeeyir53svkdZm9z0Pzx6cPJ5OpRrOcRYRzEnehnSdY0EVGYA4wetaS9AO8lPn1yuFrZeIXMFN3zvRlPeCTY5L2v906v9uvtQqigr38fSu4CQgK499Y51TwsxtU/enMk1GssJ8gbJNd6POQ+kTRCd15RefMNDGnVr+hLCxizM47XrCZHQlNvvnO/VZXnhli0Iq8FAyNegsN0TCt3jHmE8cFnXFrAjr/4=
app:
master: lifetoremindhub
devel: lifetoremindhubdevel
stable: lifetoremindhub
master: lifetoremindhubdevel
on:
repo: eduqg/LifeToRemind
60 changes: 30 additions & 30 deletions README.md
@@ -1,101 +1,102 @@
# LifeToRemind

O **LifeToRemind** é um site para criação de Planejamentos Estratégicos Pessoais voltado para a carreiras.
[![Build Status](https://travis-ci.org/eduqg/LifeToRemind.svg?branch=master)](https://travis-ci.org/eduqg/LifeToRemind)

Este repositório contém a demonstração do site feita para a disciplina de Trabalho de Conclusão de Curso 2 da Universidade de Brasília campus Gama (UnB - FGA).
**LifeToRemind** is a website for career-oriented Personal Strategic Planning.

Aproveite o **Hacktoberfest** para fazer quatro Pull Requests e ganhar a sua camiseta do evento! :v: :tada: :raised_hands:
Enjoy **Hacktoberfest** to do four Pull Requests and win your event t-shirt! :v::tada::raised_hands:

## Ferramentas e Ambiente
## Deploys

[LifetoRemind stable](http://lifetoremindhub.herokuapp.com/)

[LifeToRemind master](http://lifetoremindhubdevel.herokuapp.com/)

## Tools and Environment

* Ubuntu 16.04.5 LTS 64-bit
* RVM 1.29.8
* Ruby 2.5.5p157
* Rails 5.2.3
* PostgreSQL 9.5.17

## Instalação e Execução
## Installation and Execution

Em um terminal, clone o repositório.
In one terminal, clone the repository.

```console
git clone https://github.com/eduqg/LifeToRemind
```

Abra a pasta do projeto.
Open the project folder.
```console
cd LifeToRemind
```

[Instale o Ruby Version Manager (RVM)](https://github.com/rvm/ubuntu_rvm) para a configuração da aplicação.
[Install Ruby Version Manager (RVM)](https://github.com/rvm/ubuntu_rvm) for application configuration.

Execute os comandos para configurar a versão correta para o projeto.
Run the commands to set the correct version for the project.

```console
rvm install 2.5.5
gem install rails -v 5.2.3
bundle install
```

[Instale o Postgres](https://www.digitalocean.com/community/tutorials/how-to-setup-ruby-on-rails-with-postgres) para o banco de dados da aplicação.
[Install Postgres](https://www.digitalocean.com/community/tutorials/how-to-setup-ruby-on-rails-with-postgres) to the application database.

Faça as migrações necessárias.
Make the necessary migrations.

```console
rake db:create
rake db:migrate
```

Execute o projeto.
Run the project.

```console
rails s
```

Abra o navegador em [localhost:3000](http://localhost:3000)
Open the browser at [localhost:3000](http://localhost:3000)

Para executar os testes da aplicação.
To run the application tests.
```console
rspec
```

## Seja um desenvolvedor do Life to Remind
## Become a Life to Remind Developer

Para contribuir com o projeto verifique as issues abertas. Caso o que quer melhorar ou o problema encontrado ainda não estiver listado, crie uma nova issue com uma descrição do problema. Para contribuir para o projeto envie um Pull Request para a branch **devel**, ele será avaliado posteriomente.
To contribute to the project check the open issues. If what you want to improve or the problem you found is not already listed, create a new issue with a description of the problem. To contribute to the project send a Pull Request to the repository, it will be evaluated later.

Passo 1 - Faça um cópia do repositório clicando na aba Fork.
Step 1 - Make a copy of the repository by clicking on the Fork tab.

<img src="./app/assets/images/readme/fork.png" alt="fork"/>

Passo 2 - Faça download do projeto Life to Remind criado na sua conta.
Step 2 - Download the Life to Remind project created in your account.
```console
git clone https://github.com/SEU_USUARIO/LifeToRemind.git
```

Passo 3 - Troque para uma nova branch.
```console
git checkout -b devel
```

Passo 4 - Realize as alterações no código e envie para o seu repositório. Os commits deverão ser em inglês.
Step 3 - Make changes to the code and upload it to your repository.

```console
git add new_file.txt
```
```console
git commit -m"Adding new file"
git commit -m "Adding new file"
```
```console
git push origin devel
git push origin master
```

Passo 5 - Entre no seu repositório com as mudanças realizadas e clique para fazer o Pull Request para a branch devel.
Step 4 - Enter your repository with the changes made and click to make the Pull Request.

<img src="./app/assets/images/readme/pull.png" alt="pull"/>

Passo 6 - Aguarde seu Pull Request ser aprovado e **parabéns por se tornar um contribuidor do projeto Life to Remind!**
Step 5 - Wait for your Pull Request to be approved and **congratulations on becoming a contributor to the Life to Remind Project!**

## Imagens da Aplicação
## Application Images

<table>
<tr class="row">
Expand All @@ -116,4 +117,3 @@ Passo 6 - Aguarde seu Pull Request ser aprovado e **parabéns por se tornar um c
</th>
</tr>
</table>

15 changes: 15 additions & 0 deletions app/assets/stylesheets/application.scss
Expand Up @@ -246,3 +246,18 @@ hr {
height: 1px;
background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(47, 47, 47, 0.27), rgba(0, 0, 0, 0));
}

.position-relative {
position: relative;

.alert {
position: absolute;
top: 0;
width: 100%;
z-index: 2;
}
}

.alert {
margin-top: 20px;
}

0 comments on commit 5ff0e8f

Please sign in to comment.