Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tritondatacenter/smartos-docs
SmartOS Wiki static site
https://github.com/tritondatacenter/smartos-docs
open-source operating-systems unix
Last synced: 7 days ago
JSON representation
SmartOS Wiki static site
- Host: GitHub
- URL: https://github.com/tritondatacenter/smartos-docs
- Owner: TritonDataCenter
- Created: 2019-07-07T20:10:07.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2024-04-21T02:33:14.000Z (7 months ago)
- Last Synced: 2024-04-21T03:41:14.562Z (7 months ago)
- Topics: open-source, operating-systems, unix
- Language: HTML
- Homepage: https://docs.smartos.org/
- Size: 33.7 MB
- Stars: 14
- Watchers: 10
- Forks: 42
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# smartos-docs
This repo builds a static site for SmartOS documentation. This replaces the
old confluence based wiki.## Layout
There are two directories of note.
1. `docs` - the markdown docs. This gets rendered to the site.
2. `confluence-export` - An HTML export of the confluence content. This is
for reference purposes and will likely be removed once all of the
content is converted.## Requirements
There are very few external dependencies. Most needed tools will be installed
internally to the repo. You'll need the following available:* git
* node.js (>=8)
* python3.7
* pip3.7
* virtualenv3.7It's recommended to get these from [pkgsrc](https://pkgsrc.smartos.org), but
you may get them from elsewhere if you choose.pkgin -y install git nodejs-8 python-3.7 py37-pip py37-virtualenv
After you have the external dependencies installed, install the internal
dependenciesmake deps
## Contributing
Pull requests welcome! Unlike other Joyent repositories, this repo only uses
github pull requests in order to make it as easy to contribute as possible.Please feel free to update anything that needs fixing and send us a pull
request. Pull requests must pass `make check` before they'll be approved.
Once merged, changes should show up on the live site within about five minutes.Before submitting a pull request, you should run ensure that your changes will
pass `make check`, and run `make serve` and check it with your local browser
to make sure that everything looks the way you expect. Pull requests that do
not pass `make check` will not be merged.