cmd

package
v0.1.2 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Nov 13, 2024 License: Apache-2.0 Imports: 27 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var Migrate = &cobra.Command{
	Use:   "migrate",
	Short: "Migrate the database",
	RunE: func(cmd *cobra.Command, args []string) error {
		conn, err := gorm.Open(postgres.Open(config.Flags.DatabaseURI), &gorm.Config{
			NamingStrategy: schema.NamingStrategy{
				TablePrefix: config.Flags.DatabaseTablePrefix,
			},
		})
		if err != nil {
			return err
		}

		store, err := dbx.NewDatabase(conn, database.NewReadTx(), database.NewWriteTx(nil))
		if err != nil {
			return err
		}

		return store.Migrate(
			cmd.Context(),
			&models.Environment{},
			&models.Lock{},
			&models.Project{},
			&models.Snapshot{},
			&models.State{},
		)
	},
}
View Source
var Root = &cobra.Command{
	RunE: func(cmd *cobra.Command, args []string) error {
		srv := NewWebSrv(config)

		s, _ := server.WithContext(cmd.Context())
		s.Listen(srv, false)

		return s.Wait()
	},
}

Functions

This section is empty.

Types

type WebSrv

type WebSrv struct {
	// contains filtered or unexported fields
}

WebSrv is the server that implements the Noop interface.

func NewWebSrv

func NewWebSrv(cfg *cfg.Config) *WebSrv

NewWebSrv returns a new instance of NoopSrv.

func (*WebSrv) Start

func (s *WebSrv) Start(ctx context.Context, ready server.ReadyFunc, run server.RunFunc) func() error

Start starts the server.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL