Página web para el manejo de información del programa salud 360
- Client Details
- Environment URLS
- Da Team
- Management resources
- Setup the project
- Running the stack for development
- Stop the project
- Deploy project to heroku
- Workflow
- Running specs
| Name | Role | |
|---|---|---|
| Karina García | [email protected] | Cliente |
- Production - https://sistemasalud360.herokuapp.com/
- Development - https://staging-sistemasalud360.herokuapp.com/
| Name | Role | |
|---|---|---|
| Mauricio Cortés | [email protected] | Development |
| Victor Elizalde | [email protected] | Development |
| Hernan Iruegas | [email protected] | Development |
| Jorge Diaz | [email protected] | Development/Product Owner |
You should ask for access to this tools if you don't have it already:
After installing please you can follow this simple steps:
- Clone this repository into your local machine
$ git clone https://github.com/ProyectoIntegrador2018/salud360.git- Install gems and dependencies:
$ bundle install- Setup database:
$ rake db:setup- Fire up a terminal and run:
$ rails serverThat 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.
In order to stop the server as a whole you can run:
% CTRL+C
To run specs, you can do:
$ rspec
Or for a specific file:
$ rspec <test file path>