Skip to content

Commit

Permalink
Update services.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
Avaray committed Dec 24, 2024
1 parent 04d475d commit 7d51262
Showing 1 changed file with 21 additions and 6 deletions.
27 changes: 21 additions & 6 deletions data/services.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,34 @@ export interface Service {

export const services: Service = {
vastai: {
name: 'Vast.ai',
ref: '62878',
name: "Vast.ai",
ref: "62878",
get url() {
return `https://cloud.vast.ai/create/?ref_id=${this.ref}&template_id=`;
},
logo: 'images/vastai.svg',
logo: "images/vastai.svg",
},
runpodio: {
name: 'Runpod.io',
ref: 'gzvzzzv9',
name: "Runpod.io",
ref: "gzvzzzv9",
get url() {
return `https://runpod.io/console/deploy?ref=${this.ref}&template=`;
},
logo: 'images/runpodio.svg',
logo: "images/runpodio.svg",
},
};

//
export const vastai = {
createTemplate: () => {},
deleteTemplate: () => {},
updateTemplate: () => {},
getTemplate: (id?: string, hash?: string) => {},
};

export const runpodio = {
createTemplate: () => {},
deleteTemplate: () => {},
updateTemplate: () => {},
getTemplate: (id?: string, hash?: string) => {},
};

0 comments on commit 7d51262

Please sign in to comment.