mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-14 03:54:21 +00:00
a6aba86b54
* start admin first and ensure setup done * enable login again * log oidc client_id in setup * more logs for setup
24 lines
649 B
Go
24 lines
649 B
Go
package admin
|
|
|
|
import (
|
|
"context"
|
|
sd "github.com/caos/zitadel/internal/config/systemdefaults"
|
|
|
|
"github.com/caos/logging"
|
|
"github.com/caos/zitadel/internal/admin/repository/eventsourcing"
|
|
"github.com/caos/zitadel/internal/api/auth"
|
|
"github.com/caos/zitadel/pkg/admin/api"
|
|
)
|
|
|
|
type Config struct {
|
|
Repository eventsourcing.Config
|
|
API api.Config
|
|
}
|
|
|
|
func Start(ctx context.Context, config Config, authZ auth.Config, systemDefaults sd.SystemDefaults) {
|
|
repo, err := eventsourcing.Start(ctx, config.Repository, systemDefaults)
|
|
logging.Log("MAIN-9uBxp").OnError(err).Panic("unable to start app")
|
|
|
|
api.Start(ctx, config.API, authZ, repo)
|
|
}
|