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