A distributed static blog publish tool on IPFS
Note: alpha version need a local IPFS node
# first run ipfs
ipfs init
# start ipfs daemon
ipfs daemon
Note: Alpha version please use those command
go get -u github.com/gogank/papillon
cd $GOPATH/src/github.com/gogank/papillon
make
cd $GOPATH/src/github.com/gogank/papillon/build/blog
# generate new post
./papi new mypost
# edit it
vim $GOPATH/src/github.com/gogank/papillon/build/blog/source/posts/mypost.md
# generate whole website
./papi gen
# publish IPFS, and get your blog URL
./papi pub
Note: beta version command
go get -u github.com/gogank/papillon
cd $GOPATH/src/github.com/gogank/papillon && go build -o $GOPATH/bin/papi
cd blog_dir
papi init
papi new my_post_name
papi gen
papi pub
This is a project for Go Hack 2017