Go to file
Sam Therapy 95084c73c5
Migrate to go modules
Signed-off-by: Sam Therapy <sam@samtherapy.net>
2022-07-10 15:57:19 +02:00
root Migrate to go modules 2022-07-10 15:57:19 +02:00
Dockerfile add Makefile and Dockerfile 2015-07-18 20:55:52 -07:00
LICENSE Migrate to go modules 2022-07-10 15:57:19 +02:00
Makefile bump docker golang container to 1.6 2016-03-20 14:55:18 -07:00
README.md add readme 2015-07-18 20:56:04 -07:00
fs.go switch to godocs vfs wrapper. unfortunately remote zip support is gone now. 2016-01-20 17:36:13 -08:00
go.mod Migrate to go modules 2022-07-10 15:57:19 +02:00
go.sum Migrate to go modules 2022-07-10 15:57:19 +02:00
main.go Migrate to go modules 2022-07-10 15:57:19 +02:00
util.go switch to godocs vfs wrapper. unfortunately remote zip support is gone now. 2016-01-20 17:36:13 -08:00

README.md

GOWERC

clone of http://werc.cat-v.org/ in go.

features

  • virtual hosting
  • render markdown, html, plain text
  • serve files
  • read content from zip file

building

with go

go get -d bitbucket.org/mischief/gowerc
go install bitbucket.org/mischief/gowerc

in docker

check out the repo and run:

make

configuration

see the example configuration files in werc

using a zip file

zip a directory up and pass it to gowerc's -root option.

zip -r werc.zip werc

running

gowerc -l :80 -root werc/

with a zip file:

gowerc -l :80 -root werc.zip

in docker

docker run --rm --name gowerc -v $PWD:/opt mischief/gowerc -root /opt/werc.zip