Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,4 @@
yarn-error.log
**/._*
out
dist
20 changes: 0 additions & 20 deletions .travis.yml

This file was deleted.

15 changes: 15 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# Contributing

## How to build


git clone [email protected]:ndu2/gitlab-time-tracker.git

install requirements (see documentation.md)

```
npm install
npm run-script build





## How to test the basic functions of gtt

Create a new project on GitLab if you haven't done so already and write down the project path. e.g. `kriskbx/example-project`. To test groups and subgroups, create a new group with at least one subgroup. Add a new project to both the parent group (e.g. `example-group`) and the subgroup (e.g. `example-group/example-subgroup`) and write down the paths of all the projects and groups. Create at least two issues (write down their id e.g. `42`, `43`) and one merge request (e.g. `13`) in all projects. Or just use our public group over here: https://gitlab.com/gtt
Expand Down
5 changes: 4 additions & 1 deletion documentation.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

## requirements

* [node.js](https://nodejs.org/en/download) version >= 6
* [node.js](https://nodejs.org/en/download) version >= 20
* [npm](https://github.com/npm/npm) or [yarn](https://yarnpkg.com/en/docs/install)

## installation
Expand Down Expand Up @@ -656,6 +656,9 @@ _checkToken: false
# Skip parsing the issue/merge_request description for time records
_skipDescriptionParsing: false

# directory for the track record files. defaults to ~/.local/share/.gtt/frames/, %LOCALAPPDATA%\.gtt\Data\frames or equivalent
#frameDir: /some/absolute/directory/

# settings for invoice output
invoiceSettings:
from:
Expand Down
Loading