30 lines
775 B
Markdown
30 lines
775 B
Markdown
|
|
# .qaskx file
|
||
|
|
|
||
|
|
The .qaskx (dotqaskx) file is normally located in
|
||
|
|
your home directory. The file is a basic, short
|
||
|
|
configuration file for items that are shared
|
||
|
|
across projects, such as your Git details.
|
||
|
|
|
||
|
|
A sample file is:
|
||
|
|
|
||
|
|
```json
|
||
|
|
{
|
||
|
|
"GitProvider": "git",
|
||
|
|
"GitHost": "https://tea.example.com",
|
||
|
|
"GitApi": "https://tea.example.com/api/v1",
|
||
|
|
"GitOrg": "Wardrobe",
|
||
|
|
"GitRepoUser": "meerkat",
|
||
|
|
"GitBranch": "main",
|
||
|
|
"GitUserEmail": "meerkat@example.com",
|
||
|
|
"Organisation": "Witch & Wardrobe",
|
||
|
|
"TemplateHost": "",
|
||
|
|
"TemplateFolder": "Xtreme/Folder/Template",
|
||
|
|
"Name": "Sir Meerkat",
|
||
|
|
"ServiceOwner": "Meerkat team, Sydney",
|
||
|
|
"ServiceOwnerEmail": "Meerkat.Team@example.com",
|
||
|
|
"PrimaryProgramLanguage": "go",
|
||
|
|
"LintApiLevel": ""
|
||
|
|
}
|
||
|
|
```
|
||
|
|
|