Skip to content

gssdromen/goblog

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

#goblog

goblog is a fast and simple static blog framework implemented by golang

##Demo http://superhx.github.io/

##Features

  • Amazing first generating speed. Generating 1000 files(4KB per file) only need 5s.
  • Intelligent later generating. If you modify or add one file, generating static files only need 50ms.
  • Support GFM markdown (for more detail reference mark)
  • Provide two ways Command line and Web Page to manage you blog

##Environment Need

  • go 1.4+
  • pcre

##Installation

$ go install github.com/superhx/goblog

##Quick Start

###Set up blog workspace

$ cd $blog_dir
$ goblog init

###New a blog

$ goblog new "My first blog"

###Generate static files

$ goblog generate

###Start the server

$ goblog server

###Deploy your blog

$ golog deploy

you have to config git first.It just simple run

$ git add *
$ git commit -a -m "~"
$ git push origin master

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 81.0%
  • CSS 11.5%
  • HTML 3.9%
  • Go 3.6%