3

https://github.com/gollum/gollum - ‘Gollum is a simple wiki system built on top of Git.’

Gollum is great but it’s written in Ruby (I'm not insinuating that there is anything wrong with that).

I want to use it as part of an existing ASP.NET website (Or as a standalone website) on Azure.

Has anybody already created an ASP.NET version? Or is there any other Wiki that is anywhere near as simple as Gollum?

marvc1
  • 3,641
  • 3
  • 25
  • 34

2 Answers2

1

Just install jruby:

choco install jruby -y

Install gollum:

gem install gollum

Run it

gollum /D:/Wiki

Another option would be to use it with WSL How to use gollum on Windows? Is it possible?

Daniel Fisher lennybacon
  • 3,865
  • 1
  • 30
  • 38
0

You will need to run it as an azure VM. Since grit doesn't not work on windows.

Azure has pre-built linux vm's that you can deploy then install your required software.

(Or make a windows friendly version of grit)

Dreamwalker
  • 3,032
  • 4
  • 30
  • 60