{"id":15437263,"url":"https://github.com/victorb/quickwiki","last_synced_at":"2025-04-28T13:34:13.244Z","repository":{"id":85532598,"uuid":"71735231","full_name":"victorb/quickwiki","owner":"victorb","description":"QuickWiki is the quickest wiki ever! Static, extensible and beautiful by default","archived":false,"fork":false,"pushed_at":"2017-03-07T22:03:18.000Z","size":951,"stargazers_count":16,"open_issues_count":4,"forks_count":1,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-03-30T10:05:15.679Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"http://quickwiki.tech","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/victorb.png","metadata":{"files":{"readme":"readme.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2016-10-23T23:12:15.000Z","updated_at":"2018-12-19T20:31:42.000Z","dependencies_parsed_at":"2023-05-19T22:30:45.777Z","dependency_job_id":null,"html_url":"https://github.com/victorb/quickwiki","commit_stats":null,"previous_names":["victorbjelkholm/quickwiki"],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/victorb%2Fquickwiki","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/victorb%2Fquickwiki/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/victorb%2Fquickwiki/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/victorb%2Fquickwiki/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/victorb","download_url":"https://codeload.github.com/victorb/quickwiki/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":251320208,"owners_count":21570542,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":[],"created_at":"2024-10-01T18:56:06.522Z","updated_at":"2025-04-28T13:34:13.047Z","avatar_url":"https://github.com/victorb.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# QuickWiki\n\n\u003e Generate simple static wikis\n\nQuickWiki is a simple wiki, driven by a simple binary that you run yourself\nand generates a static website of it. Together with markdown, themes and plugins,\nQuickWiki offers a fast, easy and extensible way of running your own, personal wiki.\n\n\n## Table of Contents\n\n- [Background](#background)\n- [Installation](#installation)\n- [Usage](#usage)\n- [API](#api)\n- [Contribute](#contribute)\n- [License](#license)\n\n## Background\n\nDeveloped for my own need to have a portable wiki that I can access offline\nand doesn't require a server. Previously I've used Mediawiki and Dokuwiki which\nworked ok but it's time to have something better.\n\n## Installation\n\nYou can binaries over here: https://github.com/VictorBjelkholm/quickwiki/releases\n\nOr, install it with go if you have that installed:\n\n```\ngo get -u github.com/victorbjelkholm/quickwiki\n```\n\n## Usage\n\nQuickWiki is composed of a few commands.\n\n### `build`\n\n`quickwiki build` builds your wiki and puts it by default in a `./public/` directory.\n\nYou can change which directory to use as input as the first argument\n\n`quickwiki build /path/to/mywiki`\n\n### `server`\n\n`quickwiki server` is a quickhand command meant for while you're writing and you\nwant to see a preview of your wiki. It will do the following:\n\n* Start a server on :8085\n* Build an initial version of your wiki\n* Listen for changes to `pages/`, `media/` and your loaded theme\n* On any change, build the entire wiki again\n* Reload any page loaded in the browser\n\n### `new`\n\n`quickwiki new \u003cname\u003e` initializes a new wiki in a directory specified as the first\nargument with the default settings and one demo page.\n\n### `version`\n\n`quickwiki version` simply prints the current version of your quickwiki binary,\nso you can verify from source you're actually running the right binary. Good stuff!\n\n## API\n\nCurrently, the API is limited except for what the CLI offers. Might change in the\nfuture. If you're interested in extending QuickWiki, check out the pages about\n[themes](http://quickwiki.tech/themes/) and [plugins](http://quickwiki.tech/plugins/).\n\n## Contribute\n\nContributions are very welcome in any area! Things that notably needs improvement:\n\n* Error handling\n* More default themes to chose from\n* Plugins that can be activated\n* Performance testing and improvements\n* General code style (I'm not really used to Go yet...)\n* Better documentation! Quickwiki documentation is driven by QuickWiki itself,\nsee the source for our wiki here: https://github.com/VictorBjelkholm/quickwiki/tree/master/wiki\n* Finding bugs! There is bugs, we just have to find and fix them!\n\nRemember to check out our [contribute.md](./contribute.md) file for instructions on how to get a\ndevelopment environment setup for QuickWiki\n\nIf you're looking for features to implement, we have todo.md file that contains\nplanned features that are wanted. Open an issue if you have any questions about them.\n\n## License\n\nThe MIT License (MIT)\n\nCopyright (c) 2016 Victor Bjelkholm\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvictorb%2Fquickwiki","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fvictorb%2Fquickwiki","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvictorb%2Fquickwiki/lists"}