My Desktop Wiki

I recently set up a desktop wiki for my personal use, but I felt like the documentation wasn't being as clear as it could have been. On the other hand, I didn't feel confident enough to edit the master documentation, so I'm documenting my installation process here. Maybe parts of this page could be taken to the master documentation later.

I'm going to assume here that a Linux/Unix style system is being used, the user's home directory is at /home/user and the wiki directory is at /home/user/homewiki.

cd ~
mkdir homewiki
cp -R moin-1.6.3/wiki/data homewiki/
cp -R moin-1.6.3/wiki/htdocs homewiki/
cp -R moin-1.6.3/wiki/underlay homewiki/

cp moin-1.6.3/moin.py homewiki/
cp moin-1.6.3/wikiconfig.py homewiki/

moinpath = os.path.abspath(os.path.normpath(os.path.dirname(sys.argv[0])))
moinpath2 = '/home/user/moin-1.6.3/'
sys.path.insert(0, moinpath2)
sys.path.insert(0, moinpath)

docs = os.path.join(moinpath, 'htdocs')

data_dir = os.path.join(moinmoin_dir, 'data')
data_underlay_dir = os.path.join(moinmoin_dir, 'underlay')

That should be it. Now I just run Moin from the console by doing:

cd ~/moin-1.6.3/
./moin.py

And then go to localhost:8080 to use the wiki.

MoinMoin: VillePekkaVainio/MyDesktopWiki (last edited 2008-05-03 19:58:22 by VillePekkaVainio)