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

https://github.com/lexoyo/static-ghost

A static site generator based on Ghost and Buster
https://github.com/lexoyo/static-ghost

Last synced: 5 months ago
JSON representation

A static site generator based on Ghost and Buster

Awesome Lists containing this project

README

          

This project makes it simple to have a [Ghost](http://ghost.org/) blog hosted on Github pages.

## Instructions

### Installation

You need to have [Buster](https://github.com/axitkhurana/buster/) installed (basically a `pip install buster`).

Fork this repository and clone it on your computer.

This command will clone and install Ghost:

```
$ npm install
```

### Use

Load your site's data and start Ghost on `http://localhost:2368/ghost`

```
$ npm start
```

To stop Ghost and save your site data:

```
$ npm run stop
```

Publish your changes to github pages with

```
$ git add -A
$ git commit -am "your commit message"
$ git push origin gh-pages
```