/camome

CAMOME MOtivates ME

Primary LanguageRuby

What is camome?

Camome is a Rails application to collect data from various application and organize them.

Setup Ruby Environment

Ruby2.1.5
Rails4.1.8

I recommend you to install new Ruby and Bundler on the top of Rbenv before install camome.

  1. Install rbenv + ruby-build (check https://github.com/rbenv/rbenv#basic-github-checkout for details)
    $ git clone git@github.com:rbenv/rbenv.git ~/.rbenv
    $ git clone git@github.com:rbenv/ruby-build.git ~/.rbenv/plugins/ruby-build
    # Edit your shell dot files to add some path and environment variables.
        
  2. Install Ruby and Bundler
    # Install ruby 2.1.5
    $ rbenv install 2.1.5
    
    # Installation check
    $ rbenv global 2.1.5
    $ ruby -v # -> You will see: ruby 2.1.5...
    
    # Install bundler for your new Ruby
    $ gem install bundler
    
    # Activate bundler
    $ rbenv rehash
    
    # Get back to your system default Ruby if you want
    $ rbenv global system # say, /usr/bin/ruby
    $ ruby -v
        

Install camome

Clone camome

  1. clone camome from github
    $ git clone git@github.com:nomlab/camome.git ~/Programs/camome
        
  2. Setup to use installed ruby
    $ cd ~/Programs/camome
    $ ruby -v # -> You will see: ruby 2.1.5...
        

Setup camome

  1. Install vendor/bundle stuffs
    $ bundle install --path vendor/bundle
        
  2. Setup secret key
    $ bundle exec rake secret # -> You will see: foobarbuz... Copy the string.
    $ cp config/secrets-example.yml config/secrets.yml
    $ vim config/secrets.yml # -> Replace all <SECRETKEY> with the string outputted
        
  3. Setup DB
    $ bundle exec rake db:migrate
        
  4. Initialize DB
    $ bundle exec rake db:seed
        
  5. Install submodule
    $ git submodule init
    $ git submodule update
        

Launch camome

  1. Launch camome app
    $ bundle exec rails s
        
  2. Open http://localhost:3000 in the web browser
    # Example
    $ open http://localhost:3000
        

Help

Default user

Login name:admin
Password:  admin

Create new user

  1. Access to http://localhost:3000/users, and click “New User”
  2. After creating new user, access to http://localhost:3000/gate/logout to logout current user
  3. Make sure that you can login with the created user.