Skip to content
This repository has been archived by the owner on Dec 6, 2021. It is now read-only.

Latest commit

 

History

History
42 lines (30 loc) · 1.14 KB

README.md

File metadata and controls

42 lines (30 loc) · 1.14 KB

https://merginmaps.com/docs

Join our community chat
and ask questions!

Mergin Help Center

This repository contains source files for the Mergin Help Center - https://help.cloudmergin.com/

The site is built with Jekyll and auto-deployed using GitHub Pages from gh-pages branch.

For Developers

Locally

  1. Make sure you have Ruby installed
  2. Install the jekyll and bundler gems:
    gem install jekyll bundler
    
  3. Install this project's dependencies based on the Gemfile:
    bundle install
    
  4. Start serving the web on your localhost:
    bundle exec jekyll serve
    
  5. Go to http://localhost:4000/ in your browser

With docker

  docker run --name lmergin-docs-dev \
  --rm --volume=`pwd`/www:/srv/jekyll \
  -e JEKYLL_ENV=development -p 35729:35729 \
  -p 4000:4000 -it jekyll/builder:4.1.0 jekyll serve

and go to http://localhost:4000/ in your browser