This repository generates LivePerson's Knowledge Center, which can be found at TBD. The site is generated using Jekyll. If you find an issue with the documentation, site structure, meta or anything else, please open an issue and we'll respond as soon as possible!
If you have not already done so, make sure your computer has Ruby installed. Here's a helpful guide on how best do that on Mac (you can stop once Ruby is installed, you don't need Rails) and on any other system.
Once you have installed Ruby, clone this repository to your machine. Once done, navigate to it using Terminal or your preferred command line interface. Follow the steps below to run the site from your machine. If you're on Windows, don't forget to run your CLI as an admin.
First time install
- Run
gem install bundler
. This will install Ruby's package manager which is required for all following commands. - Run
bundle install
. This will install all the gems/plugins that the site depends on. - Run
bundle exec jekyll build
. This builds the_site
folder for the first time on your machine. Thebundle exec
prefix makes sure that bundler "watches" your build and installs any dependencies that might be missing. It's a precaution and is thus not mandatory. - Run
bundle exec jekyll serve
. This builds the site and serves it over localhost:4000 (by default, you can change theport
parameter inconfig.yml
to whatever port you'd prefer). - Navigate to http://localhost:4000/ (or the port you chose) and you'll see the site.
Serving the site after the first install
All you need to run in consequent builds of the site is bundle exec jekyll serve
. You can add the suffix --incremental
to enable incremental building of the site. This saves build times since the regeneration feature is enabled by default (the site rebuilds every time you hit "save"). When --incremental
is used, Jekyll won't rebuild the entire site on every save, only the affected sections. If you'd like the project to automatically open in a new tab, you can add the -o
flag to the end of the above command.
Note: changes that alter site navigation or other changes that change the site as a whole might not show up when using --incremental
. If that occurs, simply "kill" the build and run bundle exec jekyll serve
without the suffix.
All usage of the contents, documentation or code found in this repository is subject to the LivePerson API Terms of Use. Please use the link above to read them carefully before utilizing the site.