##Additional course related files the presentations can be found under
/doc/presentations
the scrum file can be found under
/doc/scrum
##Installation
-
Install Ruby 2.0.5 or higher if not already installed.
-
Install Bundler:
gem install bundler
-
Clone this repository.
-
Ask a contributor for the
secrets.ymlfile (if you haven't already received it) and copy it to the/configdirectory. -
Navigate to the root directory of the repository in terminal or a command line tool.
-
Install gems:
bundle install
-
Setup database and fill it with seeds:
rake db:migrate
rake db:seed-
Start rails server:
rails s
-
Navigate to
http://localhost:3000/with a browser. -
Enjoy!
##General Validations of input fields can be done using the validator.js Doc: http://1000hz.github.io/bootstrap-validator/
Facebook Login is currently configured to work on heroku.
To set the big and small title in the new template, include following code in a specific template:
<h1>
Title
<small>small title</small>
</h1>
<% end %>
If you want to display the users full name if available, you the method
user_model.get_name
This prints either the uername, if no first & last name is available, other else it begins with returning the first name and perhaps concatenated with the last.