An open API service indexing awesome lists of open source software.

https://github.com/yuchi/svbstantia

Simple substance-powered Node.js blog platform
https://github.com/yuchi/svbstantia

Last synced: over 1 year ago
JSON representation

Simple substance-powered Node.js blog platform

Awesome Lists containing this project

README

          

Svstantia
=========

Svstantia is a simple blog platform powered by
[Substance.io](http://substance.io).

Easily deployable to Heroku and configured.

## Installing

You can install it via *npm*.

npm install svbstantia

## Configuring

To configure Svbstantia simply `create` a new instance passing the
configuration object as follows. Look the source code for more
information.

```javascript
var Svbstantia = require('svbstantia');

var port = process.env.PORT || 3000;

Svbstantia.create({
author: {
name: "<< your fantastic name >>",
email: "<< your email address >>",
},
name: "<< the name of your awesome blog >>",
username: "<< your Substance.io username >>",
app: {
port: port
},
ga: "<< your Google Analytics TM token >>"
}, function () {
console.log( "Cool! Svbstantia started listening on port " + port );
});
```

## License

MIT licensed. [Read it](https://github.com/yuchi/svbstantia/raw/master/LICENSE).