-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcookiecutter.json
More file actions
26 lines (25 loc) · 912 Bytes
/
cookiecutter.json
File metadata and controls
26 lines (25 loc) · 912 Bytes
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
{
"full_name": "Gearoid O'Treasaigh",
"project_name": "NodeJS Project",
"project_slug": "{{ cookiecutter.project_name.lower().replace(' ', '-') }}",
"description": "{{cookiecutter.project_name}} repository",
"github_url": ["github.com", "github.ibm.com"],
"github_org": "gotreasa",
"github_username": "{{cookiecutter.github_org}}",
"pact_flow_username": "{{ cookiecutter.github_username.lower() }}",
"okteto_namespace": "gotreasa",
"okteto_username": "{{cookiecutter.okteto_namespace}}",
"sonar_org": "{{ cookiecutter.github_username.lower() }}",
"_okteto_token": "",
"_pact_broker_token": "",
"_sonar_token": "",
"_snyk_token": "",
"license": ["Apache-2.0", "AGPL", "GPL", "ISC", "MIT"],
"_copy_without_render": [
".github/workflows/sonar-nodejs-analysis.yml",
".github/workflows/snyk-nodejs-analysis.yml",
"node_modules/*",
"coverage/*",
".vscode/"
]
}