Interface IAppService

interface IAppService {
    basicAuth: IBasicAuth[];
    build: {
        type: BuildType;
    };
    createDotEnv: boolean;
    deploy: IDeploy;
    deploymentUrl: string;
    domains: IDomain[];
    enabled: boolean;
    env: string;
    maintenance: IMaintanance;
    mounts: IMount[];
    name: string;
    ports: IPort[];
    projectName: string;
    redirects: IRedirect[];
    resources: IResourceLimits;
    source: Source;
    token: string;
    type: "app";
}

Properties

basicAuth: IBasicAuth[]
build: {
    type: BuildType;
}

Type declaration

createDotEnv: boolean
deploy: IDeploy
deploymentUrl: string
domains: IDomain[]
enabled: boolean
env: string
maintenance: IMaintanance
mounts: IMount[]
name: string
ports: IPort[]
projectName: string
redirects: IRedirect[]
resources: IResourceLimits
source: Source
token: string
type: "app"

Generated using TypeDoc