wallaby-blog
v0.3.4
Published
CouchDB-based blog engine for nodejs
Downloads
7
Readme
wallaby-blog
CouchDB-based blog engine for nodejs.
Installation
First you need to install the node module with all dependencies with npm
npm install https://github.com/FreshXOpenSource/wallaby-blog/tarball/RELEASE_0_1_0
settings.json:
{
"couchdb": {
"host":"127.0.0.1",
"port":5984,
"db":"DATABASENAME",
"user":"USER",
"password":"PASSWORD"
},
"elasticsearch": {
"host":"127.0.0.1",
"port":9200
},
"listenPort":8080
}
app.js:
require('wallaby-blog').start();
Use the default templates:
ln -s node_modules/wallaby-blog/views
ln -s node_modules/wallaby-blog/public
start:
node app.js
done