Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mikesmullin/borg-docs
Borg documentation
https://github.com/mikesmullin/borg-docs
Last synced: about 1 month ago
JSON representation
Borg documentation
- Host: GitHub
- URL: https://github.com/mikesmullin/borg-docs
- Owner: mikesmullin
- Created: 2015-01-17T17:36:44.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2015-01-20T07:11:44.000Z (almost 10 years ago)
- Last Synced: 2024-04-14T14:50:54.934Z (9 months ago)
- Language: CSS
- Homepage: http://mikesmullin.github.io/borg-docs/
- Size: 871 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Borg documentation
The [`master`](https://github.com/mikesmullin/borg-docs/tree/master) branch contains the production copy of the dynamic (Jade, Stylus, Coffee) documentation for [Borg](http://github.com/mikesmullin/borg).
The [`develop`](https://github.com/mikesmullin/borg-docs/tree/develop) branch contains the working development copy of dynamic documentation.
The [`gh-pages`](https://github.com/mikesmullin/borg-docs/tree/gh-pages) branch contains the latest production snapshot static HTML copy of the documentation.
Hosted by Github Pages at [http://mikesmullin.github.io/borg-docs/](http://mikesmullin.github.io/borg-docs/)## Starting the dynamic version
```bash
git checkout master
npm install
npm start
# browse to http://localhost:3000/
```## Publishing to the static version
```bash
git checkout gh-pages
./publish.sh
git add -A
git commit
git push
```