-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathgitlab_config.json.template
More file actions
42 lines (42 loc) · 1.04 KB
/
gitlab_config.json.template
File metadata and controls
42 lines (42 loc) · 1.04 KB
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
{
"default": "work",
"instances": {
"work": {
"url": "https://gitlab.company.com",
"token": "glpat-xxxxxxxxxxxxxxxxxxxx",
"description": "Company GitLab instance"
},
"personal": {
"url": "https://gitlab.com",
"token": "glpat-yyyyyyyyyyyyyyyyyyyy",
"description": "Personal GitLab projects"
},
"client": {
"url": "https://gitlab.client-company.com",
"token": "glpat-zzzzzzzzzzzzzzzzzzzz",
"description": "Client project GitLab"
}
},
"projects": {
"webapp": {
"project_id": "acme/webapp",
"instance": "work",
"description": "Main company web application"
},
"api": {
"project_id": "acme/api-server",
"instance": "work",
"description": "Backend API server"
},
"blog": {
"project_id": "john/personal-blog",
"instance": "personal",
"description": "My personal blog"
},
"mobile": {
"project_id": "123",
"instance": "client",
"description": "Client mobile app (numeric ID)"
}
}
}