個人的なメモを取るためのリポジトリです。
auth.yml
というファイルにusername
とpassword
をいれときます。
※めんどくさい場合はconfig.ru
のbasic認証部分を書き換えます。
username: foo
password: bar
$ bundle install --path vendor
$ bundle exec rackup
unicornいれたので多分以下で動くはず。
$ bundle exec unicorn -c config/unicorn.rb -D
gitのhookを利用しようと思ったけど、gollumから更新すると何故か動いてくれないのでcronかwheneverあたりで頑張る予定。
以下のコードを1時間とぐらいに走らせればとりあえず動くには動く。 ロジックもへったくれも無いけど動けば良しとしよう。
require 'git'
PATH = File.join(File.dirname(__FILE__), "..")
repo = Git.open(PATH)
repo.push(repo.remote('origin'))