summaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
authorxengineering <me@xengineering.eu>2024-05-09 22:33:42 +0200
committerxengineering <me@xengineering.eu>2024-05-09 22:37:03 +0200
commit0ac3cc76b4b6c824c4b3f7a357d40b487984abfb (patch)
tree5391e5f27b344d9eab288876052ec63a2f97db72 /main.go
parent0142af99aba36241c276a56a088e7aac10c62f86 (diff)
downloadceres-0ac3cc76b4b6c824c4b3f7a357d40b487984abfb.tar
ceres-0ac3cc76b4b6c824c4b3f7a357d40b487984abfb.tar.zst
ceres-0ac3cc76b4b6c824c4b3f7a357d40b487984abfb.zip
Inject examples only with new --example flag
The default use case should be to not inject example recipes.
Diffstat (limited to 'main.go')
-rw-r--r--main.go6
1 files changed, 5 insertions, 1 deletions
diff --git a/main.go b/main.go
index 90a29e3..6d6467a 100644
--- a/main.go
+++ b/main.go
@@ -37,7 +37,11 @@ func main() {
model.ConnectDatabase(filepath.Join(storage.Path, "ceres.sqlite3"))
defer model.DisconnectDatabase()
model.MigrateDatabase(version)
- model.InjectTestRecipes()
+
+ if injectExamples {
+ model.InjectExampleRecipes()
+ log.Println("Added example recipes")
+ }
server := NewServer(config.HttpAddress)
go server.Start()