https://github.com/stayradiated/rango
A web frontend for hugo.
https://github.com/stayradiated/rango
Last synced: 2 months ago
JSON representation
A web frontend for hugo.
- Host: GitHub
- URL: https://github.com/stayradiated/rango
- Owner: stayradiated
- License: mit
- Created: 2014-08-31T03:41:43.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2019-02-19T03:44:23.000Z (over 6 years ago)
- Last Synced: 2025-02-19T12:56:25.912Z (5 months ago)
- Language: Go
- Homepage: http://rango.readme.io
- Size: 4.86 MB
- Stars: 284
- Watchers: 11
- Forks: 18
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
rango
=====A web frontend for [hugo](https://gohugo.io).
It's designed to make it easy to manage a small site, even for people with
little computer experience.

## Installation
```
$ go get -u -v github.com/stayradiated/rango
$ cd $GOPATH/src/github.com/stayradiated/rango
$ cd admin
$ npm install
$ gulp
$ cd ..
$ go build
$ ./rango
```## Using with Apache
Based on [this
tutorial](http://www.jeffreybolle.com/blog/run-google-go-web-apps-behind-apache).1. Create a folder named `admin` or `rango` or whatever.
2. Create a `.htaccess` inside that folder with the following content:
3. Enable apache modules: `proxy`, `proxy_http`, `rewrite````
RewriteEngine on
RewriteRule ^(.*)$ http://localhost:8080/$1 [P,L]
```