A web frontend for hugo.
It's designed to make it easy to manage a small site, even for people with little computer experience.
$ go get -u -v github.com/stayradiated/rango
$ cd $GOPATH/src/github.com/stayradiated/rango
$ cd admin
$ npm install
$ gulp
$ cd ..
$ go build
$ ./rango
Based on this tutorial.
- Create a folder named
admin
orrango
or whatever. - Create a
.htaccess
inside that folder with the following content: - Enable apache modules:
proxy
,proxy_http
,rewrite
RewriteEngine on
RewriteRule ^(.*)$ http://localhost:8080/$1 [P,L]