Backstage
    Preparing search index...

    Interface RemoteConfigSourceOptions

    interface RemoteConfigSourceOptions {
        parser?: Parser;
        reloadInterval?: HumanDuration;
        substitutionFunc?: EnvFunc;
        url: string;
    }
    Index

    Properties

    parser?: Parser

    A content parsing function to transform string content to configuration values.

    reloadInterval?: HumanDuration

    How often to reload the config from the remote URL, defaults to 1 minute.

    Set to Infinity to disable reloading, for example { days: Infinity }.

    substitutionFunc?: EnvFunc

    A substitution function to use instead of the default environment substitution.

    url: string

    The URL to load the config from.