https://github.com/lexoyo/blog
My Ghost blog hosted on Github pages
https://github.com/lexoyo/blog
Last synced: about 2 months ago
JSON representation
My Ghost blog hosted on Github pages
- Host: GitHub
- URL: https://github.com/lexoyo/blog
- Owner: lexoyo
- Created: 2016-11-06T02:20:32.000Z (almost 9 years ago)
- Default Branch: gh-pages
- Last Pushed: 2016-11-15T13:40:52.000Z (almost 9 years ago)
- Last Synced: 2025-01-24T17:20:44.003Z (9 months ago)
- Language: HTML
- Size: 8.4 MB
- Stars: 0
- Watchers: 3
- Forks: 0
- 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
```____
in case of 'lxml.etree.XMLSyntaxError: Char 0x0 out of allowed range, line 1, column 1031'
sqlite3 Ghost/content/data/ghost-dev.db
.mode csv
.once dataout.csv
SELECT * FROM posts;vi dataout.csv
:s/\\u0000//gdelete from posts;
.import dataout.csv posts