Skip to content

Commit

Permalink
Update documentation with usage of configuration file
Browse files Browse the repository at this point in the history
  • Loading branch information
Yevhen Zavhorodnii committed Jun 10, 2024
1 parent 1823639 commit 7ded0b8
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 1,362 deletions.
25 changes: 17 additions & 8 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,20 +41,29 @@ To run the code with VS Code add launch.json with this content and simply use ``
"program": "${workspaceFolder}/cmd/threagile",
"args": [
"help",
"--ignore-orphaned-risk-tracking",
"--model",
"./threagile.yaml",
"--app-dir",
"directory_with_support_files",
"--temp-dir",
"./",
"-v"
"--config",
"./config.json",
]
}
]
}
```

Where config.json

```
{
"appFolder": "/Users/Yevhen.Zavhorodnii/app",
"tempFolder": "./",
"diagramDPI": 96,
"inputFile": "./threagile.yaml",
"ignoreOrphanedRiskTracking": true,
"verbose": true
}
```

Where

```directory_with_support_files``` is a directory where support files are located:

```
Expand Down
Loading

0 comments on commit 7ded0b8

Please sign in to comment.