Interface AppConfigType

interface AppConfigType {
    appServiceAccountId?: string;
    env: AppEnv;
    fallbackLanguage: string;
    host?: string;
    mode: AppMode;
    name: string;
    port: number;
    shortname: string;
    uiHost?: string;
}

Properties

appServiceAccountId?: string

Application service account id (user with type SA in users table)

'hcu:xxxxxxxxxxx'
env: AppEnv

Application environment

'local', 'development', 'stage', 'production'
fallbackLanguage: string

Application fallback language

'en'
host?: string

Application host

'https://app-api.example.com or http://localhost:3000'
mode: AppMode

Application mode

'standalone'
name: string

Application name

'Jetstream'
port: number

Application port

3000
shortname: string

Application shortname

'js'
uiHost?: string

Application UI host

'https://app.example.com or http://localhost:8080'