Notejam application implemented using Ruby on Rails framework.
Ruby on Rails version: 4.2.5
Clone the repo:
$ git clone git@github.com:komarserjio/notejam.git YOUR_PROJECT_DIR/
Use RVM or rbenv for environment management.
Install dependencies:
$ cd YOUR_PROJECT_DIR/rubyonrails/notejam/
$ bundle install
Create database schema:
$ cd YOUR_PROJECT_DIR/rubyonrails/notejam/
$ rake db:migrate
Start built-in web server:
$ cd YOUR_PROJECT_DIR/rubyonrails/notejam/
$ rails server
Go to http://127.0.0.1:3000/ in your browser.
Start functional and unit tests:
$ cd YOUR_PROJECT_DIR/rubyonrails/notejam/
$ rake test
Do you have ruby/rails experience? Help the app to follow ruby and rails best practices.
Please send your pull requests in the master
branch.
Always prepend your commits with framework name:
Rubyonrails: Implemented sign in functionality
Read contribution guide for details.