-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig.standalone.toml
68 lines (56 loc) · 2.46 KB
/
config.standalone.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
# License Scanner Config
[environment]
title = "License Scanner Config"
# What mode should we run the scanner in?
# options:
# - "standalone": will run the tool against all repos listed in the `repos` list (below)
# - "ci": will run the tool against the repo defined in `pathToRepo`
mode = 'standalone'
# How we should process the licenses
# options are:
# - "fossa-api": will export to fossa api (requires FOSSA_API_KEY to be set in .env)
# - "fossa-json": will export from fossa to a folder of json files. This just shows import heirarchies, and doesn't scan licenses
# - "lc-csv": will use npm license-checker, and export to a list of csv files
# - "lc-summary": will use npm license-checker, and export a summary file for each repo
tool = "lc-csv"
##
# The path to the repo that will be scanned
# Ignored when `mode = "standalone"`
##
pathToRepo = ""
##
# The list of repos to scan
# Lines starting with a # will be ignored
# Ignored when `mode = "ci"`
##
repos = [
"https://github.com/mojaloop/account-lookup-service",
"https://github.com/mojaloop/central-ledger",
"https://github.com/mojaloop/quoting-service",
"https://github.com/mojaloop/central-event-processor",
"https://github.com/mojaloop/forensic-logging-client",
"https://github.com/mojaloop/central-end-user-registry",
"https://github.com/mojaloop/ml-api-adapter",
"https://github.com/mojaloop/simulator",
"https://github.com/mojaloop/mock-pathfinder",
"https://github.com/mojaloop/pathfinder-provisioning-client",
"https://github.com/mojaloop/central-services-stream",
"https://github.com/mojaloop/email-notifier",
"https://github.com/mojaloop/central-settlement",
"https://github.com/mojaloop/als-oracle-template",
"https://github.com/mojaloop/interop-switch-js",
"https://github.com/mojaloop/central-services-shared",
"https://github.com/mojaloop/central-services-error-handling",
"https://github.com/mojaloop/central-services-auth",
"https://github.com/mojaloop/central-services-database",
"https://github.com/mojaloop/central-services-metrics",
"https://github.com/mojaloop/forensic-logging-sidecar",
"https://github.com/mojaloop/central-directory",
"https://github.com/mojaloop/central-hub",
"https://github.com/mojaloop/central-kms",
"https://github.com/mojaloop/ilp-service",
"https://github.com/mojaloop/dfsp-ussd",
# Java projects - todo: inspect manually
# "https://github.com/mojaloop/interop-common",
# "https://github.com/mojaloop/interop-mock-central-directory",
]