mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
21 lines
717 B
JavaScript
21 lines
717 B
JavaScript
export const EXAMPLE_REPOSITORIES = {
|
|
clock: { repo: 'https://github.com/meteor/clock' },
|
|
leaderboard: { repo: 'https://github.com/meteor/leaderboard' },
|
|
localmarket: { repo: 'https://github.com/meteor/localmarket' },
|
|
'simple-todos': { repo: 'https://github.com/meteor/simple-todos' },
|
|
'simple-todos-react': {
|
|
repo: 'https://github.com/meteor/simple-todos-react'
|
|
},
|
|
'simple-todos-angular': {
|
|
repo: 'https://github.com/meteor/simple-todos-angular'
|
|
},
|
|
todos: { repo: 'https://github.com/meteor/todos' },
|
|
'todos-react': {
|
|
'repo': 'https://github.com/meteor/todos',
|
|
'branch': 'react',
|
|
},
|
|
'angular-boilerplate': {
|
|
repo: 'https://github.com/Urigo/angular-meteor-base.git'
|
|
}
|
|
};
|