-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #57 from DLR-SC/v1.0
Incremental update for v1.0 release candidate
Showing
4 changed files
with
141 additions
and
52 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,32 @@ | ||
# This is an example of a configuration file as used by gitlab2prov. | ||
# The configuration options match the command line flags in function. | ||
|
||
[GITLAB] | ||
# Gitlab project urls as a comma seperated list. | ||
project_urls = project_a_url, project_b_url | ||
|
||
# Gitlab personal access token. | ||
# More about tokens and how to create them: | ||
# https://docs.gitlab.com/ee/user/profile/personal_access_tokens.html#create-a-personal-access-token | ||
token = token | ||
|
||
[OUTPUT] | ||
# Provenance serialization format. | ||
# Supported formats: json, rdf, xml, provn, dot | ||
format = json | ||
|
||
[MISC] | ||
# Enables/Disables profiling using the cprofile lib. | ||
# The runtime profile is written to a file called gitlab2prov-run-$TIMESTAMP.profile | ||
# where $TIMESTAMP is the current time in 'YYYY-MM-DD-hh-mm-ss' format. | ||
# The profile can be visualized using tools such as snakeviz. | ||
profile = False | ||
|
||
# Enables/Disables verbose output (DEBUG mode logging to stdout) | ||
verbose = False | ||
|
||
# Path to double agent mapping to unify duplicated agents. | ||
double_agents = path/to/alias/mapping | ||
|
||
# Enables/Disables agent pseudonymization by enumeration. | ||
pseudonymous = False |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters