GitLab report view for issues/members time tracking
Inspired by https://gitlab.com/gitlab-org/gitlab-ee/issues/1271
Install node and gulp
Install dependencies
npm i
Build styles
gulp sass
Create GitLab personal access token with at least
api
access (more info on GitLab Documentation page)Set up environment variables and start webpack dev server
GITLAB_URL="http://gitlab.localhost" \ GITLAB_TOKEN="personal_access_token" \ npm start
GITLAB_URL
is the home page for your GitLab instanceGITLAB_TOKEN
is an GitLab personal access token you got at previous stepLISTEN_HOST
islocalhost
by defaultLISTEN_PORT
is3030
by default
Open http://localhost:3030/ in browser (for default
LISTEN_HOST
andLISTEN_PORT
)