Skip to content

hfm/wiki

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Memorandum

個人的なメモを取るためのリポジトリです。

使い方

必要なファイル

auth.ymlというファイルにusernamepasswordをいれときます。 ※めんどくさい場合はconfig.ruのbasic認証部分を書き換えます。

username: foo
password: bar

とりあえず立ち上げる

$ bundle install --path vendor
$ bundle exec rackup

nginxとかでがんばる

unicornいれたので多分以下で動くはず。

$ bundle exec unicorn -c config/unicorn.rb -D

GitHubとの同期方法

gitのhookを利用しようと思ったけど、gollumから更新すると何故か動いてくれないのでcronかwheneverあたりで頑張る予定。

以下のコードを1時間とぐらいに走らせればとりあえず動くには動く。 ロジックもへったくれも無いけど動けば良しとしよう。

require 'git'

PATH = File.join(File.dirname(__FILE__), "..")
repo = Git.open(PATH)
repo.push(repo.remote('origin'))

Releases

No releases published

Packages

No packages published