coolify/apps/api/src/lib/buildPacks/index.ts

40 lines
723 B
TypeScript
Raw Normal View History

2022-02-10 14:47:44 +00:00
import node from './node';
import staticApp from './static';
import docker from './docker';
import gatsby from './gatsby';
import svelte from './svelte';
import react from './react';
2021-05-16 19:54:44 +00:00
import nestjs from './nestjs';
2022-02-10 14:47:44 +00:00
import nextjs from './nextjs';
import nuxtjs from './nuxtjs';
import vuejs from './vuejs';
import php from './php';
import rust from './rust';
2022-02-23 21:07:06 +00:00
import astro from './static';
2022-02-23 23:30:33 +00:00
import eleventy from './static';
2022-04-02 14:22:51 +00:00
import python from './python';
2022-04-19 20:08:42 +00:00
import deno from './deno';
2022-04-28 13:10:45 +00:00
import laravel from './laravel';
2022-08-11 13:20:34 +00:00
import heroku from './heroku';
export {
2022-02-10 14:47:44 +00:00
node,
staticApp as static,
docker,
gatsby,
svelte,
react,
2021-05-16 19:54:44 +00:00
nestjs,
2022-02-10 14:47:44 +00:00
nextjs,
nuxtjs,
vuejs,
php,
2022-02-23 21:07:06 +00:00
rust,
2022-02-23 23:30:33 +00:00
astro,
2022-04-02 14:22:51 +00:00
eleventy,
2022-04-19 20:08:42 +00:00
python,
2022-04-28 13:10:45 +00:00
deno,
2022-08-11 13:20:34 +00:00
laravel,
heroku
};