Skip to content

Commit 94e1c81

Browse files
committed
added repos that can be automatically be set up
1 parent 6337d28 commit 94e1c81

File tree

1 file changed

+17
-9
lines changed

1 file changed

+17
-9
lines changed

scripts/setupProjectScript.js

Lines changed: 17 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -8,23 +8,31 @@ var repoList = {
88
'repoName': 'coderadar',
99
'repoUrl': 'https://github.com/reflectoring/coderadar.git'
1010
},
11-
'coderadar-demo': {
11+
'coderadarDemo': {
1212
'repoName': 'coderadar-demo',
1313
'repoUrl': 'https://github.com/pschild/coderadar-demo.git'
1414
},
15-
'hystrix': {
16-
'repoName': 'hystrix',
17-
'repoUrl': 'https://github.com/Netflix/Hystrix.git'
18-
},
1915
'junit': {
2016
'repoName': 'junit4',
2117
'repoUrl': 'https://github.com/junit-team/junit4.git'
18+
},
19+
'javaDesignPatterns': {
20+
'repoName': 'java-design-patterns',
21+
'repoUrl': 'https://github.com/iluwatar/java-design-patterns.git'
22+
},
23+
'retrofit': {
24+
'repoName': 'retrofit',
25+
'repoUrl': 'https://github.com/square/retrofit.git'
26+
},
27+
'javaAlgorithms': {
28+
'repoName': 'java-algorithms',
29+
'repoUrl': 'https://github.com/posborne/java-algorithms.git'
2230
}
2331
};
24-
var activeRepo = repoList.junit;
32+
var activeRepo = repoList.javaAlgorithms;
2533

2634
var fromYear = 2015;
27-
var fromMonth = 10; // 1 = january
35+
var fromMonth = 1; // 1 = january
2836
var fromDay = 1;
2937

3038
var accessToken = undefined;
@@ -179,5 +187,5 @@ registerUser()
179187
.then(createProject)
180188
.then(addFilePattern)
181189
.then(addAnalyzerConfig)
182-
.then(addAnalyzingStrategy)
183-
.then(addModules);
190+
.then(addAnalyzingStrategy);
191+
// .then(addModules);

0 commit comments

Comments
 (0)