-
Notifications
You must be signed in to change notification settings - Fork 2
How to use this
Simon Worthington edited this page Sep 16, 2025
·
5 revisions
Using this wiki doesn't require any programming – just some git and Github manipulation.
Click the Use this template button and then the Create a new repository option on the Github repo.
Clone the repository locally:
git clone https://github.com/<you>/<your-new-repo> && cd $_
Remove the submodule link to this wiki:
git submodule deinit --all
rm -rf .git/modules/*
git rm -rf .gitmodules wiki
Add the submodule link to your wiki:
git submodule add https://github.com/<you>/<your-new-repo>.wiki wiki
Edit the config/tech-docs.yml
file and fill out information from your own service. See the tech-docs-template documentation for how to do this.
Commit and push the changes:
git commit -a
git push origin master
Go to your repository settings and under Pages, specify the Source as "Github Actions". After a few minutes, your new site will be available.
When you save an edit to your Github Wiki, the changes will be synced automatically to Github Pages. This can take a few minutes.