Type alias BaseAppConfig

BaseAppConfig: {
    cli_args?: string[];
    debug?: boolean;
    default?: boolean;
    domains?: string[];
    env?: {
        [name: string]: string;
    };
    package: string | Wasmer;
    redirect?: {
        force_https?: boolean;
    };
    scaling?: {
        mode?: null | "single_concurrency";
    };
}

Configuration for an app For more information, please check the app config file: https://docs.wasmer.io/edge/configuration

Type declaration

  • Optional cli_args?: string[]

    The CLI arguments

  • Optional debug?: boolean

    In debug mode?

  • Optional default?: boolean

    Set this version as the default for the app. Is true by default

  • Optional domains?: string[]

    Domains associated to this app

  • Optional env?: {
        [name: string]: string;
    }

    The environment variables

    • [name: string]: string
  • package: string | Wasmer

    The package to deploy.

  • Optional redirect?: {
        force_https?: boolean;
    }

    Redirect rules

  • Optional scaling?: {
        mode?: null | "single_concurrency";
    }

    Scaling configuration

    • Optional mode?: null | "single_concurrency"

      How to scale the app

Generated using TypeDoc