https://github.com/lnsp/wikka
Simple and speedy Wiki software
https://github.com/lnsp/wikka
Last synced: about 1 year ago
JSON representation
Simple and speedy Wiki software
- Host: GitHub
- URL: https://github.com/lnsp/wikka
- Owner: lnsp
- License: mit
- Created: 2015-03-08T13:19:39.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2016-08-19T23:22:24.000Z (almost 10 years ago)
- Last Synced: 2025-02-11T16:41:48.052Z (over 1 year ago)
- Language: Go
- Homepage:
- Size: 17.6 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# wikka [](https://travis-ci.org/lnsp/wikka)
Wikka is a wiki environment written in Go focused on speed and simplicity.
## Building
To build the binaries, you need to download the Go runtime from [golang.org](https://golang.org).
Then switch to your workspace and enter
```bash
go get github.com/mooxmirror/wikka
```
If you don't want to run it in the repository folder, you have to copy the files `config.json` and the `templates` folder to the same directory as the executable.
## Contribute
Just fork the project and start working on some nice stuff. If you need some inspiration, you should fine some in our Issues section.
## Configuration
Configuration of the server is done via the `config.json`. Here is an example:
```json
{
"Title": "Your nice wiki",
"Url": "http://my-wiki-url-here.com",
"Articles": "articles/",
"Templates": "templates/",
"Host": "my-wiki-url-here.com:80",
"Frontpage": "index"
}
```
The names of the `main.template`, `edit.template`, `view.template` and `error.template` templates are constant, they can't be changed. Every other template file can be changed though.