Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/stayradiated/rango
A web frontend for hugo.
https://github.com/stayradiated/rango
Last synced: 8 days 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 (about 10 years ago)
- Default Branch: master
- Last Pushed: 2019-02-19T03:44:23.000Z (over 5 years ago)
- Last Synced: 2024-04-09T11:31:19.364Z (7 months ago)
- Language: Go
- Homepage: http://rango.readme.io
- Size: 4.86 MB
- Stars: 285
- Watchers: 11
- Forks: 20
- 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.![File Browser](./docs/screenshot_1.jpg)
![Text Editor](./docs/screenshot_2.jpg)
## 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]
```