Sha256: 347703ebaea62de223b809155acad9b54036d6bdb044817cd2aab69f9395e145

Contents?: true

Size: 497 Bytes

Versions: 1

Compression:

Stored size: 497 Bytes

Contents

#!/usr/bin/ruby
require 'rubygems'
require 'gollum/frontend/app'

system("which git") or raise "Looks like I can't find the git CLI in your path.\nYour path is: #{ENV['PATH']}"

gollum_path = '/var/www/wiki.tecnh.com' # CHANGE THIS TO POINT TO YOUR OWN WIKI REPO

disable :run

configure :development, :staging, :production do
 set :raise_errors, true
 set :show_exceptions, true
 set :dump_errors, true
 set :clean_trace, true
end

Precious::App.set(:gollum_path, gollum_path)

run Precious::App

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
tecnh-gollum-1.0.2.auth2 lib/gollum/frontend/config.ru