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
- Host: GitHub
- URL: https://github.com/yuchi/svbstantia
- Owner: yuchi
- License: mit
- Created: 2012-06-28T12:35:23.000Z (almost 14 years ago)
- Default Branch: master
- Last Pushed: 2012-06-28T13:08:01.000Z (almost 14 years ago)
- Last Synced: 2025-02-06T18:56:13.747Z (over 1 year ago)
- Language: JavaScript
- Homepage: http://yuchi.herokuapp.com/developing-svbstantia
- Size: 133 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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).