chroma / go /coordinator /atlas.hcl
badalsahani's picture
feat: chroma initial deploy
287a0bc
raw
history blame contribute delete
442 Bytes
data "external_schema" "gorm" {
program = [
"go",
"run",
"-mod=mod",
"ariga.io/atlas-provider-gorm",
"load",
"--path", "./internal/metastore/db/dbmodel",
"--dialect", "postgres",
]
}
env "gorm" {
src = data.external_schema.gorm.url
dev = "postgres://localhost:5432/dev?sslmode=disable"
migration {
dir = "file://migrations"
}
format {
migrate {
diff = "{{ sql . \" \" }}"
}
}
}