Skip to content

fire2a/docs

Repository files navigation

Fire2a documentation repo

This repo uses the just-the-docs-template Jekyl Pages action.
The source for its content is in the docs directory.
Check the live page.

About Us

We are a research group that seeks solutions to complex problems arising from the terrestrial ecosystem and its natural and anthropogenic disturbances,such as wildfires.

Currently hosted at ISCI offices.

Contact us at fire2a@fire2a.com.

content licence just-the-docs-licence

local hosting on debian

install

sudo apt-get install ruby-full ruby-bundler jekyll build-essential

build

cd <repo/root>
bundle config set --local path 'vendor/bundle'
bundle install

live serve

Editing and saving will automatically update the page.

bundle exec jekyll serve --livereload
...
LiveReload address: http://127.0.0.1:35729
    Server address: http://127.0.0.1:4000  <--- OPEN IN BROWSER
  Server running... press ctrl-c to stop.

update just-the-docs

Dependabot will automatically create a pull request to update the just-the-docs version.

git switch dependabot/bundler/just-the-docs-0.8.2
# check compatibility
ruby -v
node -v
# clean
git clean -dfX -n
rm Gemfile.lock
rm -r .bundle vendor/bundle
bundle clean --force
# rebuild

references

https://github.com/just-the-docs/just-the-docs
https://jekyllrb.com/docs/installation/other-linux/