Skip to content

ProyectoIntegrador2018/salud360

Repository files navigation

Salud360

Maintainability

Página web para el manejo de información del programa salud 360

Table of contents

Client Details

Name Email Role
Karina García karigarciasr@gmail.com Cliente

Environment URLS

Da team

Name Email Role
Mauricio Cortés A00816689@itesm.mx Development
Victor Elizalde A00817586@itesm.mx Development
Hernan Iruegas A00817021@itesm.mx Development
Jorge Diaz A01191342@itesm.mx Development/Product Owner

Management tools

You should ask for access to this tools if you don't have it already:

Development

Setup the project

After installing please you can follow this simple steps:

  1. Clone this repository into your local machine
$ git clone https://github.com/ProyectoIntegrador2018/salud360.git
  1. Install gems and dependencies:
$ bundle install
  1. Setup database:
$ rake db:setup

Running the stack for Development

  1. Fire up a terminal and run:
$ rails server

That command will start the server locally on port 3000.

Once you see an output like this:

web_1   | => Booting Puma
web_1   | => Rails 5.1.3 application starting in development on http://0.0.0.0:3000
web_1   | => Run `rails server -h` for more startup options
web_1   | => Ctrl-C to shutdown server
web_1   | Listening on 0.0.0.0:3000, CTRL+C to stop

This means the project is up and running.

Stop the project

In order to stop the server as a whole you can run:

% CTRL+C

Running specs

To run specs, you can do:

$ rspec

Or for a specific file:

$ rspec <test file path>