This is a documentation repository for TechPass, written for Documentation Portal, using docsify. You can find out what docsify or markdown extensions are supported here.
The repository is currently in active development and contents will change rapidly.
All markdown files should live within the /docs folder. Each main section should be a separate markdown file by itself. If you have added a new main section, you should also update _sidebar.md so that it will show up when the webpage is rendered.
All non-markdown files (i.e. images and sample code files) should live within the assets subfolder.
- Install docsify cli
npm -g install docsify-cli
- Download this repository via
git clone
- Run
docsify serve .
if you get zsh:1: command not found: docsify
after npm install:
make sure you add export PATH="$HOME/.npm-packages/bin:$PATH"
to the 1st line in your ~/.zshrc.
Then source ~/.zshrc
to reload. Finally, test with docsify --version
. You should see the following:
docsify-cli version: x.x.x
The repository has been pre-configured to pull in the default Developer Portal's styling for Documentations. (See index.html)
By default, once you commit and push any changes into github, the contents will be updated automatically.
Please fork the repository, make your changes and submit a Pull Request.