-
Notifications
You must be signed in to change notification settings - Fork 97
Deploying to GitHub Pages
Tianxiang Xiong edited this page Oct 5, 2016
·
14 revisions
The Github Pages feature is an excellent way to share codox documentation with your users. Get started with the following steps:
- Add
codox
to your project's.gitignore
file. - Inside your project directory, run the following commands:
rm -rf codox && mkdir codox
git clone git@github.com:<user-name>/<project-name>.git codox
cd codox
git symbolic-ref HEAD refs/heads/gh-pages
rm .git/index
git clean -fdx
cd ..
- Build your documentation with
lein codox
. - To publish your docs to Github Pages, run the following commands:
cd codox
git checkout gh-pages # To be sure you're on the right branch
git add .
git commit -am "new documentation push."
git push -u origin gh-pages
cd ..
That's it! Your documentation should appear within minutes at http://<user-name>.github.com/<project-name>
.