3
0
corteza/server/app/app.cue
Denis Arh 40f0b15f64 Refactor old seeder code and restructure commands
corteza
    users
        synthetic
            generate
            remove
    compose
        records
            synthetic
                generate
                remove
2022-11-18 10:55:18 +01:00

55 lines
1.1 KiB
CUE

package app
import (
"github.com/cortezaproject/corteza/server/codegen/schema"
"github.com/cortezaproject/corteza/server/app/options"
"github.com/cortezaproject/corteza/server/system"
"github.com/cortezaproject/corteza/server/compose"
"github.com/cortezaproject/corteza/server/automation"
"github.com/cortezaproject/corteza/server/federation"
)
corteza: schema.#platform & {
"ident": "corteza"
"options": [
options.DB,
options.HTTPClient,
options.HTTPServer,
options.RBAC,
options.SCIM,
options.SMTP,
options.actionLog,
options.apigw,
options.auth,
options.corredor,
options.environment,
options.eventbus,
options.federation,
options.limit,
options.locale,
options.log,
options.messagebus,
options.monitor,
options.objectStore,
options.provision,
options.sentry,
options.template,
options.upgrade,
options.waitFor,
options.websocket,
options.workflow,
options.discovery,
]
// platform resources
"resources": resources
"components": [
system.component,
compose.component,
automation.component,
federation.component,
]
}