theforeman.org
June 29, 2024 ยท View on GitHub
This repo contains the source code for theforeman.org. All of the site's content is written in Markdown. If you're not familiar with it, fear not; it's easy to learn and to become rapidly productive!
Everything you push into the gh-pages branch goes live immediately!
Testing
Locally
To test your changes locally use
# bundle exec rake
to generate your site in the _site directory, or
# bundle exec rake server
To start Jekyll server locally.
With Docker
docker run -it --rm -v `pwd`:/srv/jekyll:Z -p 4000:4000 jekyll/jekyll jekyll serve --watch
Navigate to http://localhost:4000
Contributing
- Fork this repo to your account.
- Clone the fork.
- Run
bundle installin the root of the freshly cloned repo. This will install Jekyll, the tool we use to build the site. - Run
bundle exec jekyll serve --watchand open your browser to http://localhost:4000. - Make some changes, refresh your browser to preview them.
- Submit a pull request.
Contributing a blog post
- (following on from step 5 above)
- Run
bundle exec rake new_post['title of my post']to generate a new empty blog post - Edit _posts/YYYY-MM-DD-title_of_my_post.md
- Set the author correctly, and appropriate tags (see previous posts for examples)
- Add content, and preview as above.
- Submit PR
New release actions
For each new release we keep stable documentation tree for the record.
Foreman Core
cp -r manuals/nightly manuals/X.Zcp -r _includes/manuals/nightly manuals/X.Z- change version numbers in manuals/X.Z/*.md
- add version to documentation.md
- Generate release notes using
scripts/release_notes.rb - Update installer options using
scripts/installer/get_params
Foreman Plugins
- cp -r plugins/foreman_plugin/X.Y plugins/foreman_plugin/X.Z
- add "warning: old" to plugins/foreman_plugin/X.Y/index.md
- update plugins/foreman_plugin/index.md
Updating API Auto-Generated Docs by apipie
Follow instructions in the apidocs github repo.