forked from cerc-io/snowballtools-base
Part of [Service provider auctions for web deployments](https://www.notion.so/Service-provider-auctions-for-web-deployments-104a6b22d47280dbad51d28aa3a91d75) - Add hotfix for updating old DB with new org slug - Add remove-deployment script (for debugging) - Part of cerc-io/snowballtools-base#28  Co-authored-by: Isha <ishavenikar7@gmail.com> Reviewed-on: cerc-io/snowballtools-base#34 Co-authored-by: Nabarun <nabarun@deepstacksoft.com> Co-committed-by: Nabarun <nabarun@deepstacksoft.com>
30 lines
657 B
TypeScript
30 lines
657 B
TypeScript
import {
|
|
VITE_GITHUB_IMAGE_UPLOAD_PWA_TEMPLATE_REPO,
|
|
VITE_GITHUB_PWA_TEMPLATE_REPO,
|
|
VITE_GITHUB_NEXT_APP_TEMPLATE_REPO,
|
|
} from 'utils/constants';
|
|
|
|
export default [
|
|
{
|
|
id: '1',
|
|
name: 'Progressive Web App (PWA)',
|
|
icon: 'web',
|
|
repoFullName: `${VITE_GITHUB_PWA_TEMPLATE_REPO}`,
|
|
isComingSoon: false,
|
|
},
|
|
{
|
|
id: '2',
|
|
name: 'Image Upload PWA',
|
|
icon: 'pwa',
|
|
repoFullName: `${VITE_GITHUB_IMAGE_UPLOAD_PWA_TEMPLATE_REPO}`,
|
|
isComingSoon: false,
|
|
},
|
|
{
|
|
id: '3',
|
|
name: 'Next.js + React + TailwindCSS',
|
|
icon: 'web',
|
|
repoFullName: `${VITE_GITHUB_NEXT_APP_TEMPLATE_REPO}`,
|
|
isComingSoon: false,
|
|
},
|
|
];
|