An experimental module to provide CouchDB storage for an external module for Federated Wiki, rather than being built into the core.
The motivation for this is that not everybody is using CouchDB for storage, also allows for the integration to be independently maintained.
The following steps will need to be followed:
-
Take a copy of the fedwiki/wiki-node repository. Either create a fork on the GitHub site, or clone a copy either locally or to where you wish to install Federated Wiki.
-
In your copy, edit
package.json
to add the following line to the dependencies:
"wiki-storage-couchdb": "*",
-
If you are using git for deployment, commit this change to git.
-
Install your modified version of Federated Wiki, either:
-
running
npm install 'your-github-id'/wiki-node
, if you are using github for deployment, or -
if you modified
package.json
inplace by runningnpm install
from within the modified directory. See npm-install for more ideas.
- When starting Federated Wiki you will need to tell it to use CouchDB. This is done by adding the following configuration setting
--database '{"type": "couchdb", "name": "otherpages", "host": '127.0.0.1', "port": ...}'
To run the tests for wiki-storage-couchdb
install (dev) dependencies with $ npm install
then run the tests with node_modules/.bin/mocha test