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

lutraconsulting/input-docs

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 

Repository files navigation

https://merginmaps.com/docs

Join our community chat
and ask questions!

InputApp Help Center

This repository contains source files for the InputApp Help Center - https://help.inputapp.io/

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 linput-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