dev: hotfixes

+ moved cmd/simgos-sync* to cmd/snync*
+ adjust Dockerfiles
This commit is contained in:
2025-12-12 10:51:37 +07:00
parent 44b37e2d49
commit 87baa898f6
17 changed files with 5 additions and 5 deletions
+22
View File
@@ -0,0 +1,22 @@
data "external_schema" "gorm" {
program = [
"go",
"run",
"-mod=mod",
".",
]
}
env "gorm" {
src = data.external_schema.gorm.url
dev = "" // dsn db to check the diff
migration {
dir = "file://migrations"
}
url = "" // dsn db to apply
format {
migrate {
diff = "{{ sql . \" \" }}"
}
}
}