Everyone can contribute! Learn DevOps and Cloud Native in our cafe ☕


Technology is moving fast in the DevOps and Cloud Native community.

Join the conversation and add your thoughts, tips, experiences, stories.

"Everyone Can Contribute" is inspired by GitLab's mission.

Deploy VuePress with GitLab Pages


Sometimes you need a cool looking and searchable documentation. This is where VuePress and GitLab Pages comes in. There you can create your own documentation in lovely markdown files and host it for free. And with this guide you can setup it in under 15 minutes.

What is VuePress?

VuePress is a light weight static site generator made with Vue. It suits perfectly for documentation and provides a basic search (only headlines). Simplicity is one of the strenghts of this generator. Even a non-technical person can create and edit the documentations.

Install VuePress

To install VuePress you need Node and NPM on your machine. Just execute npx create-vuepress-site in your git repository. Fill out the questions if you want. Afterwards VuePress is installed in /docs. I would recommend to move up the files into your root folder of your repository (only when it’s a repository only for the documentation). In the src folder you can create all the documentation files and structure. The VuePress application is located in src/.vuepress, where you can change everything you want.

Configure VuePress for GitLab Pages

To use VuePress with GitLab Pages we need to do some configuration. When you host on GitLab Pages the first path part is your project name. But VuePress assume that you host it directly on a domain without additional pathing. To configure the basepath (the standard variable name in Vue) you have to use base instead because this is modified by VuePress.

Add following code snippet the file src/.vuepress/config.js:

1
2
3
4
5
6
7
module.exports = {
  [...]
  base: process.env.CI_COMMIT_BRANCH === 'master'
    ? '/' + process.env.CI_PROJECT_NAME + '/'
    : '/'
  [...]
}

This snippet uses the environment variables in the GitLab Runner. We use the predefined variable CI_PROJECT_NAME to put it in the path. This happens when the pipeline is executed in the master branch, which is accessable by the variable CI_COMMIT_BRANCH.

Deploy VuePress

To deploy the static site we can use one job in the deploy stage. The stage: deploy is important, because it is necessary to deploy pages. Also the artifact path is related to this, because public is the additional trigger for it. Because VuePress is a javascript project the image: node:latest is required. If you use it for your case it is a good idea to use a fixed version instead of latest.

Note: The split in the different script executions is for better understanding.

Before we can generate we need to install the dependencies with npm install. Afterwards execute npm run build which generate the final static files of VuePress. In the end we create an folder public which contains all the static files. The output of the generation is stored in src/.vuepress/dist by default. These files will be copied by cp -r src/.vuepress/dist/* public into the public folder.

Finally our gitlab-ci.yml is ready:

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
image: node:latest

pages:
  stage: deploy
  before_script:
    - npm install
  script:
    - npm run build 
  after_script:
    - mkdir public
    - cp -r src/.vuepress/dist/* public
  artifacts:
    paths:
      - public
  only:
    - master

The final result can be visible under the domain: <GitLabUser>.gitlab.io/<ProjectName>/
See the source code here: https://gitlab.com/Phil404/vue-press-and-gitlab-pages


Date published: October 22, 2020

Tags: Gitlab, Pages, Vue, Vuepress