This repo olds the Rönd official website and documentation
Contribution are welcome, if you want to add or correct anything feel free to open a PR!
You can clone the repository right to where you want to host the docs:
git clone [email protected]:rond-authz/rond-authz.github.io.git docs
cd docsThe preferred way for serving the site locally is to use docker compose:
# v1
docker-compose up
# v2
docker compose upor, to run it as a daemon:
# v1
docker-compose up -d
# v2
docker compose up -dYou can then open your browser to http://localhost:4000 to see the server running.
Note : changes
baseurl: ""in _config.yml when you are running in local and prod according to the requirement.
If you already have a working installation of jekyll you could instead run it directly with:
jekyll serve
# or
bundle exec jekyll serveNOTE: If the above serve command throws an error saying require': cannot load such file -- webrick (LoadError) try to run bundle add webrick to automatically add the webrick gem to your Gemfile, or manually add gem "webrick" line to the Gemfile and then run the serve command again.