< Summary - Envilder Core (TypeScript)

Information
Class: src/envilder/core/domain/CliOptions.ts
Assembly: Default
File(s): src/envilder/core/domain/CliOptions.ts
Tag: 151_24479375065
Line coverage
N/A
Covered lines: 0
Uncovered lines: 0
Coverable lines: 0
Total lines: 39
Line coverage: N/A
Branch coverage
N/A
Covered branches: 0
Total branches: 0
Branch coverage: N/A
Method coverage

Feature is only available for sponsors

Upgrade to PRO version

File(s)

src/envilder/core/domain/CliOptions.ts

#LineLine coverage
 1/**
 2 * Options for the CLI commands.
 3 */
 4export type CliOptions = {
 5  /**
 6   * Path to the JSON file with environment variable mapping
 7   */
 8  map?: string;
 9
 10  /**
 11   * Path to the .env file to be generated or imported
 12   */
 13  envfile?: string;
 14
 15  /**
 16   * Single environment variable name to push
 17   */
 18  key?: string;
 19
 20  /**
 21   * Value of the single environment variable to push
 22   */
 23  value?: string;
 24
 25  /**
 26   * Secret path in the cloud provider for the single environment variable
 27   */
 28  secretPath?: string;
 29
 30  /**
 31   * AWS CLI profile to use
 32   */
 33  profile?: string;
 34
 35  /**
 36   * Flag to push local .env file back to the secret store
 37   */
 38  push?: boolean;
 39};

Methods/Properties