e3bb8b19dd
Also improves migrations and updates the db schema docs. Signed-off-by: Michael Mayer <michael@photoprism.app>
15 lines
337 B
Go
15 lines
337 B
Go
package commands
|
|
|
|
import (
|
|
"github.com/urfave/cli"
|
|
|
|
"github.com/photoprism/photoprism/internal/config"
|
|
"github.com/photoprism/photoprism/internal/get"
|
|
)
|
|
|
|
// InitConfig initializes the command config.
|
|
var InitConfig = func(ctx *cli.Context) (*config.Config, error) {
|
|
c := config.NewConfig(ctx)
|
|
get.SetConfig(c)
|
|
return c, c.Init()
|
|
}
|