Skip to content

Latest commit

 

History

History
74 lines (62 loc) · 2.15 KB

README.md

File metadata and controls

74 lines (62 loc) · 2.15 KB

noPontoApp

ruby rails Code Climate Issue Count

What is noPonto?

The aim of the project is to make access to the information easy for people who want to take the bus in São Paulo. We delivery everything in a simple and clear way. Type where you want to go in the search box and you get all the information you need to reach the destination.

The app can be accessed by any device on this link

  • Ruby (on Rails)
  • CoffeeScript
  • Heroku
  • Slack
  • Trello
  • SPTrans API
  • Google Maps
  • Docker

I want to contribute

Everyone is welcome to contribute to the project and improve the way people get information about bus traffic.

To contribute follow the steps below:

1. Fork this repository

2. Clone your fork to a local repository

git clone your-foked-repository
cd your-foked-repository

3. Preparing Ambient

  • Rename the file of ambient variables from .env.example to .env.

4. Run docker-composer build

docker-compose up --build

5. Run migrations (Os containers terão que estar up para executar o comando abaixo)

docker-compose up
docker-compose run --rm app bundle exec rake db:create db:migrate

6. Run tests

docker-compose exec app bundle exec spring rspec

7. Start the app

docker-compose up --build

8. Add the original repository as a source in your local repository

git remote add upstream https://github.com/andreleoni/noPonto

9. Sync your repository with the original

git fetch upstream

10. Update local repository

git checkout master
git merge upstream/master

11. Create a new branch

git checkout -b my-new-feature

12. Make a pull request