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
- Host: GitHub
- URL: https://github.com/lexoyo/static-ghost
- Owner: lexoyo
- Created: 2016-11-06T00:53:17.000Z (almost 9 years ago)
- Default Branch: gh-pages
- Last Pushed: 2016-11-07T13:42:01.000Z (almost 9 years ago)
- Last Synced: 2025-03-30T10:44:37.270Z (6 months ago)
- Size: 1000 Bytes
- Stars: 10
- Watchers: 2
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```