{"id":37183205,"url":"https://github.com/sdassow/wiking","last_synced_at":"2026-01-14T21:09:19.031Z","repository":{"id":57603568,"uuid":"291676553","full_name":"sdassow/wiking","owner":"sdassow","description":"Golang based wiki engine with content in Markdown format, support for attachments, diagrams, git storage, and fulltext search","archived":false,"fork":true,"pushed_at":"2020-11-17T23:44:16.000Z","size":3326,"stargazers_count":2,"open_issues_count":5,"forks_count":1,"subscribers_count":3,"default_branch":"main","last_synced_at":"2024-06-20T16:49:59.519Z","etag":null,"topics":["attachments","diagrams","fulltext-search","git","golang","markdown","wiki"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":"Cloudxtreme/wiki-9","license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/sdassow.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2020-08-31T09:48:26.000Z","updated_at":"2020-11-17T23:44:19.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/sdassow/wiking","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/sdassow/wiking","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sdassow%2Fwiking","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sdassow%2Fwiking/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sdassow%2Fwiking/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sdassow%2Fwiking/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/sdassow","download_url":"https://codeload.github.com/sdassow/wiking/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sdassow%2Fwiking/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28434584,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-14T18:57:19.464Z","status":"ssl_error","status_checked_at":"2026-01-14T18:52:48.501Z","response_time":107,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["attachments","diagrams","fulltext-search","git","golang","markdown","wiki"],"created_at":"2026-01-14T21:09:18.164Z","updated_at":"2026-01-14T21:09:19.022Z","avatar_url":"https://github.com/sdassow.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# wiking\n\nGolang based wiki engine with content in Markdown format.\n\nAdditional features:\n\n - Git support using [go-git](https://github.com/go-git/go-git) (pure Go implementation)\n - Attachments\n - Diagrams using [Mermaid](https://mermaid-js.github.io/mermaid/)\n - Fulltext search using [Riot](https://github.com/go-ego/riot) engine\n\n## Configuration\n\nBy default the web server listens on localhost port 8000, and wiki pages are stored in `./data`.\nThis can be changed with environment variables or a configuration file.\n\nThe configuration options are as follows:\n\n * `brand string` - branding at top of each page (default `Wiki`)\n * `cookie-insecure bool` - send cookies over http (default `false`)\n * `cookie-keyfile string` - path to cookie keyfile (default `./cookie.key`)\n * `data string` - data storage directory (default `./data`)\n * `git-push bool` - enable push on commit, disabled by default\n * `git-url string` - git repository to pull from (and push to), disabled by default\n * `hosts list-of-strings` - hostnames to allow requests to, protecting against dns rebind attacks, and used for dynamic TLS certificate when protocol is \"https\" and no certificate and keyfile was provided, defaults to `localhost` and `127.0.0.1` (when empty, rebind protection is disabled)\n * `indexdir string` - path to search index directory (default `./riot-index`)\n * `listen-address string` - address to bind to (default `:8000`)\n * `listen-network string` - network can be \"tcp\", \"tcp4\", \"tcp6\", \"unix\" or \"unixpacket\" (default `tcp`)\n * `listen-protocol string` - protocol can be \"fcgi\", \"http\", or \"https\" (default `http`)\n * `prefix string` - URL prefix for access via a sub-path, empty by default\n * `tls-certfile string` - path to TLS certificate file in PEM format, empty by default\n * `tls-keyfile string` - path to TLS key file in PEM format, empty by default\n\n## Design\n\n - The data directory is a working copy of a git repository, and if not existent on startup, a checkout of the git repository is done\n - All wiki pages are stored inside the data directory in markdown format\n - Attachments are stored per markdown file in a directory without the mardown file extension\n - The fulltext search index is stored in a separate index directory\n - For CSRF and cookie protection a key file is used, and a random key file is generated if none exists on startup\n\nThe resulting top level directory view is:\n```\n./data/\n      + FrontPage.md\n      + FrontPage/...\n./riot-index/...\n./cookie.key\n```\n\n## License\n\nMIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsdassow%2Fwiking","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsdassow%2Fwiking","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsdassow%2Fwiking/lists"}