aboutsummaryrefslogtreecommitdiffstats
path: root/routers/install.go
diff options
context:
space:
mode:
Diffstat (limited to 'routers/install.go')
-rw-r--r--routers/install.go5
1 files changed, 4 insertions, 1 deletions
diff --git a/routers/install.go b/routers/install.go
index 81b164038c..12182ad300 100644
--- a/routers/install.go
+++ b/routers/install.go
@@ -49,6 +49,7 @@ func GlobalInit() {
models.LoadModelsConfig()
models.LoadRepoConfig()
models.NewRepoContext()
+ NewServices()
if base.InstallLock {
if err := models.NewEngine(); err != nil {
@@ -56,9 +57,11 @@ func GlobalInit() {
}
models.HasEngine = true
+ if models.EnableSQLite3 {
+ log.Info("SQLite3 Enabled")
+ }
cron.NewCronContext()
}
- NewServices()
checkRunMode()
}