Features: - Build packs for popular frontend frameworks. It will help to understand which build packs should be chosen. Fixes: - Github queries optimized. - Save repositories to store (faster navigation). - Remove unnecessary data on dashboard requests. - Speed up static site builds with a lot. UI: - Redesign of the application deployment page. - Redesign of database deployments page.
57 lines
1 KiB
JavaScript
57 lines
1 KiB
JavaScript
const defaultBuildAndDeploy = {
|
|
installation: 'yarn install',
|
|
build: 'yarn build'
|
|
}
|
|
|
|
const templates = {
|
|
svelte: {
|
|
pack: 'svelte',
|
|
...defaultBuildAndDeploy,
|
|
directory: 'public',
|
|
name: 'Svelte'
|
|
},
|
|
next: {
|
|
pack: 'nextjs',
|
|
...defaultBuildAndDeploy,
|
|
port: 3000,
|
|
name: 'NextJS'
|
|
},
|
|
nuxt: {
|
|
pack: 'nuxtjs',
|
|
...defaultBuildAndDeploy,
|
|
port: 3000,
|
|
name: 'NuxtJS'
|
|
},
|
|
'react-scripts': {
|
|
pack: 'react',
|
|
...defaultBuildAndDeploy,
|
|
directory: 'build',
|
|
name: 'React'
|
|
},
|
|
'parcel-bundler': {
|
|
pack: 'static',
|
|
...defaultBuildAndDeploy,
|
|
directory: 'dist',
|
|
name: 'Parcel'
|
|
},
|
|
'@vue/cli-service': {
|
|
pack: 'vuejs',
|
|
...defaultBuildAndDeploy,
|
|
directory: 'dist',
|
|
name: 'Vue'
|
|
},
|
|
gatsby: {
|
|
pack: 'gatsby',
|
|
...defaultBuildAndDeploy,
|
|
directory: 'public',
|
|
name: 'Gatsby'
|
|
},
|
|
'preact-cli': {
|
|
pack: 'react',
|
|
...defaultBuildAndDeploy,
|
|
directory: 'build',
|
|
name: 'Preact'
|
|
}
|
|
}
|
|
|
|
export default templates
|