jay is a simple markdown editor for memo and taking minutes
Ruby | 2.2.1 |
Rails | 4.2.1 |
I recommend you to install new Ruby and Bundler on the top of Rbenv before install jay.
- Install rbenv + ruby-build (check https://github.com/sstephenson/rbenv#basic-github-checkout for details)
$ git clone https://github.com/sstephenson/rbenv.git ~/.rbenv $ git clone https://github.com/sstephenson/ruby-build.git ~/.rbenv/plugins/ruby-build # Edit your shell dot files to add some path and environment variables.
- Install Ruby and Bundler
# Install ruby 2.2.1 $ rbenv install 2.2.1 # Installation check $ rbenv global 2.2.1 $ ruby -v # -> You will see: ruby 2.2.1... # 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
- clone jay from github
$ git clone https://github.com/nomlab/jay.git ~/Programs/jay
- Setup to use installed ruby
$ cd ~/Programs/jay $ ruby -v # -> You will see: ruby 2.2.1...
- Install vendor/bundle stuffs
$ bundle install --path vendor/bundle
- Setup secret key
$ bundle exec rake secret # -> You will see: foobarbuz... Copy the string. $ vim config/secrets.yml # -> Replace all <SECRETKEY> with the string outputted
- Initialize application settings from sample
$ cp config/application_settings_sample.yml config/application_settings.yml
- Set your github organization
$ vim config/application_settings.yml # Set as the following if your organization name is foobarbuz: # default: &default # github: # organization: foobarbuz
- Setup GitHub OAuth
- Register a new OAuth application
- Authorization callback URL
- http://example.com/auth/github/callback
- Set client id, client secret, allowed team id
$ vim config/application_settings.yml # Set as the following: # default: &default # oauth: # github: # client_id: foo # client_secret: bar # ## allowed_team_id is a github team id adllowed to login. # ## It can be checked by: # ## curl -u [your-github-account] https://api.github.com/orgs/:org/teams # allowed_team_id: buz
- Register a new OAuth application
- Setup incoming webhook
- GitHub
- Generate token
$ bundle exec rake secret # -> You will see: foobarbuz... Copy the string.
- Add webhook to your repository
- Payload URL
- http://example.com/incoming_webhook/github
- Secret
- foobarbuz…
- Which events would you like to trigger this webhook?
- Let me select individual events. -> Issues
- Set strategy and token
$ vim config/application_settings.yml # Set as the following: # default: &default # incoming_webhooks: # - strategy: github # token: foobarbuz
- Generate token
- GitHub
- Setup DB
$ bundle exec rake db:migrate $ bundle exec rake db:migrate RAILS_ENV=production
# start
$ export RAILS_ENV="development"
$ export RAILS_SERVE_STATIC_FILES=true
$ bundle exec rails server -p 3000 -d -e "$RAILS_ENV"
$ open http://localhost:3000
# stop
$ kill $(cat tmp/pids/server.pid)
# start
$ export RAILS_ENV="production"
$ export RAILS_SERVE_STATIC_FILES=true
$ bundle exec rails server -p 3000 -d -e "$RAILS_ENV"
$ bundle exec rake assets:precompile RAILS_ENV="$RAILS_ENV"
$ bundle exec rake assets:precompile:image
$ open http://localhost:3000
# stop
$ kill $(cat tmp/pids/server.pid)