This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
dagger/examples/jamstack/main.cue

23 lines
543 B
CUE
Raw Normal View History

package main
// Name of the application
name: string & =~"[a-z0-9-]+"
// FIXME: temporary workaround (GH issue #142) - image metadata is lost after build
backend: container: command: ["/bin/hello-go"]
// Inject db info in the container environment
backend: environment: {
DB_USERNAME: database.username
DB_HOSTNAME: database.hostname
DB_PASSWORD: database.password
DB_DBNAME: database.dbName
DB_PORT: "\(database.port)"
DB_TYPE: database.dbType
}
url: {
frontendURL: "FIXME"
backendURL: "https://\(backend.hostname)/"
}