-
Notifications
You must be signed in to change notification settings - Fork 2
/
config.js
66 lines (65 loc) · 2.31 KB
/
config.js
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
//This config file is temporary. We are probably going to have a more robust
// data source for all the repositories we want to pull from.
var config = {
waitTime: 3600000,
repositories: [
{
cloneFolder: 'NASAXaevTest',
type: 'GIT',
source: 'https://github.com/Xaevion/NASAXaevTest.git',
target: '[email protected]:NASATest/NASAXaevTest.git'
},
{
cloneFolder: 'mct',
type: 'GIT',
source: 'https://github.com/nasa/mct.git',
target: 'https://github.com/NASATest/mct.git'
},
{
cloneFolder: 'CertWare',
type: 'GIT',
source: 'https://github.com/nasa/CertWare.git',
target: 'https://github.com/NASATest/CertWare.git'
}
// {
// type: 'TAR',
// source: 'http://opensource.gsfc.nasa.gov/projects/DQSS/dqss_64.tar',
// target: 'https://github.com/NASATest/DQSS.git'
// },
// {
// type: 'SVN',
// source: 'http://svn.apache.org/repos/asf/oodt',
// target: 'https://github.com/NASATest/oodt.git'
// },
// {
// type: 'GIT',
// source: 'http://git.code.sf.net/p/datacasting/code datacasting-code',
// target: 'https://github.com/NASATest/datacasting.git'
// },
// {
// type: 'SVN',
// source: 'http://svn.code.sf.net/p/ion-dtn/code/trunk ion-dtn-code',
// target: 'https://github.com/NASATest/ion-dtn.git'
// },
// {
// type: 'GIT',
// source: 'http://git.code.sf.net/p/dptoolkit/code dptoolkit-code',
// target: 'https://github.com/NASATest/dptoolkit.git'
// },
// {
// type: 'GIT',
// source: 'http://git.code.sf.net/p/coreflightexec/code coreflightexec-code',
// target: 'https://github.com/NASATest/cFE-6.1.1.git'
// },
// {
// type: 'GIT',
// source: 'http://github.com/OpenVSP/OpenVSP.git',
// target: 'https://github.com/NASATest/OpenVSP.git'
// },
// {
// type: 'GIT',
// source: 'https://github.com/sunpy/sunpy.git',
// target: 'https://github.com/NASATest/sunpy.git'
]
};
module.exports = config;