This is a Rails App intended to be an appointments book.
bundle
bundle exec rake db:migrate
bundle exec rake db:seed
For now, to run it locally, you will need a CAS server to login to the app.
At the application root, create a .env file with the following content:
DB_HOST=<db_host>
DB_ADAPTER=<db_adapter>
DB_ENCODING=<db_encoding>
DB_NAME=<db_name>
DB_POOL=<db_pool>
DB_USERNAME=<db_username>
DB_PASSWORD=<db_password>
CAS_USERS_BASE_URL=<cas_server_url>
The app config is located at
config/schedule_settings.yml
bundle exec rails s
happy_massage is Copyright © 2015-2016 Eron Junior, Flavio Muniz and Paula Roschel.
It is free software, and may be redistributed under the terms specified in the LICENSE file.
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create a new Pull Request