UNPKG

@boostercloud/cli

Version:

CLI of the Booster Framework, the next level of abstraction for cloud-native applications

17 lines (14 loc) 586 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.template = void 0; exports.template = `import { Booster } from '@boostercloud/framework-core' import { BoosterConfig } from '@boostercloud/framework-types' Booster.configure('local', (config: BoosterConfig): void => { config.appName = '{{{ projectName }}}' config.providerPackage = '@boostercloud/framework-provider-local' }) Booster.configure('production', (config: BoosterConfig): void => { config.appName = '{{{ projectName }}}' config.providerPackage = '{{{providerPackageName}}}' }) `;