libs/nx/src/executors/shared/generate-app/schema.ts
Omit
Properties |
|
env (Optional) | |
Type |
string[] | string
|
Default value |
""
|
Description
|
You can provide individual overrides or new env values in the form of KEY=value.
|
import { JourneySrcGenerationOptions } from '@allianz/taly-sdk';
// the `env?` option is overwritten here to avoid a breaking change in the executor schema
// TODO: remove `env?` option here and only omit `project` from `JourneySrcGenerationOptions`
export interface GenerateAppSchema extends Omit<JourneySrcGenerationOptions, 'project' | 'env'> {
/**
* You can provide individual overrides or new env values in the form of KEY=value.
* @default ""
* @examples ["BFF_BASE_URL=http://example.com", ["API_KEY=abdg25sbeb24hf", "API_URL=http://example.com"]]
*/
env?: string[] | string;
}