-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.sample.json
More file actions
38 lines (38 loc) · 870 Bytes
/
config.sample.json
File metadata and controls
38 lines (38 loc) · 870 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
27
28
29
30
31
32
33
34
35
36
37
38
{
"app": {
"name": "gitlab-github-migrator",
"version": "1.0.0"
},
"server": {
"main": {
"host": "0.0.0.0",
"port": 8080
}
},
"meta": {
"gitlab": {
"base_url": "https://gitlab.example.com",
"api_token": "your-gitlab-api-token",
"group_path": "group/subgroup"
},
"github": {
"base_url": "https://api.github.com",
"api_token": "your-github-api-token",
"org": "organization-name"
},
"migration": {
"naming_strategy": "last-group",
"name_mappings": {},
"migrate_code": true,
"migrate_issues": true,
"migrate_merge_requests": true,
"migrate_wikis": true,
"migrate_labels": true,
"migrate_milestones": true,
"migrate_branches": true,
"migrate_tags": true,
"preserve_history": true,
"dry_run": false
}
}
}