Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
gitpod-io
GitHub Repository: gitpod-io/gitpod
Path: blob/main/components/dashboard/src/data/git-providers/predefined-repos.ts
2501 views
1
/**
2
* Copyright (c) 2024 Gitpod GmbH. All rights reserved.
3
* Licensed under the GNU Affero General Public License (AGPL).
4
* See License.AGPL.txt in the project root for license information.
5
*/
6
7
export type PredefinedRepo = {
8
url: string;
9
repoName: string;
10
description: string;
11
/**
12
* The configuration ID of the repository.
13
* This is only set for org-recommended repos.
14
*/
15
configurationId?: string;
16
};
17
18
export const PREDEFINED_REPOS: PredefinedRepo[] = [
19
{
20
url: "https://github.com/gitpod-demos/voting-app",
21
repoName: "demo-docker",
22
description: "A fully configured demo with Docker Compose, Redis and Postgres",
23
},
24
{
25
url: "https://github.com/gitpod-demos/spring-petclinic",
26
repoName: "demo-java",
27
description: "A fully configured demo with Java, Maven and Spring Boot",
28
},
29
];
30
31