28 lines
520 B
Plaintext
28 lines
520 B
Plaintext
|
|
(import "./config.ncl")
|
||
|
|
& {
|
||
|
|
provisioning = {
|
||
|
|
default_providers = ["hetzner", "lxd"],
|
||
|
|
generation = {
|
||
|
|
overwrite = true,
|
||
|
|
verbose = true,
|
||
|
|
},
|
||
|
|
templates = {
|
||
|
|
base_path = "templates",
|
||
|
|
custom_path = "./custom-templates",
|
||
|
|
},
|
||
|
|
infrastructure = {
|
||
|
|
environment = "development",
|
||
|
|
region = "eu-central-1",
|
||
|
|
},
|
||
|
|
ai = {
|
||
|
|
enabled = true,
|
||
|
|
provider = "ollama",
|
||
|
|
model = "llama2",
|
||
|
|
},
|
||
|
|
logging = {
|
||
|
|
level = "debug",
|
||
|
|
file = true,
|
||
|
|
},
|
||
|
|
},
|
||
|
|
}
|