Yet another simple wiki on git. DEMO
- realtime preview in editing
- markdown
- utf-8 page title and contents (You can use 日本語, français, ...)
- slideshow
- drag & drop image upload
- bootstrap
You need:
git
orredis
(mainly for Heroku) as backend database.ruby 1.9.3
orjruby 1.7.3
Restrictions:
- If you use
jruby
orwindows
,git
is not available. Run trahald with-E
options likerackup -E redis
. - If you use this on
heroku
, image uploader is unable to use.
This project does not support ruby 1.8.7. It will no longer supported in all senses after June 2013.
[http://www.ruby-lang.org/en/news/2011/10/06/plans-for-1-8-7/](Plans for 1.8.7 - ruby-lang.org)
This is just a library. To use Trahald as your wiki, see 3100/a_trahald.
If you use redis
, set your redis url to env TRAHALD_REDIS_URL
:
export TRAHALD_REDIS_URL="redis://redistogo:password@sub.redistogo.com:port/"
or
heroku config:set TRAHALD_REDIS_URL=redis://redistogo:password@sub.redistogo.com:port/
bundle install
By default, Bundler installs git
and redis
gems. You can use --without
option with these groups:
- git
- redis
e.g. If you do not need redis
gem, add the option:
bundle install --without redis
rackup -p $PORT
By default, Trahald use git
. If you want to use redis
alternatively, add -E
option:
rackup -p $PORT -E redis
bundle exec rspec
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request