https://github.com/maxking/gowiki
Simple Wiki app in Go!
https://github.com/maxking/gowiki
Last synced: over 1 year ago
JSON representation
Simple Wiki app in Go!
- Host: GitHub
- URL: https://github.com/maxking/gowiki
- Owner: maxking
- License: mit
- Created: 2016-02-28T00:31:19.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2016-02-28T00:50:48.000Z (over 10 years ago)
- Last Synced: 2025-01-20T22:51:07.323Z (over 1 year ago)
- Language: CSS
- Homepage:
- Size: 7.81 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
GoWiki
=====
This is a simple wiki that I am working on to learn some basic concepts of Go.
It is quite simple and nothing fancy yet. It stores page in markdown inside the
`data` directory. It supports templates and also nested templates.
To compile this program run:
```bash
$ go build wiki.go
```
Then you can run the program using:
```bash
$ ./wiki
```
This starts an HTTP server listening at [localhost:8000]