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/react-netlify/main.cue
Solomon Hykes 7a77466a66 DX: change "#dagger: compute: " to "#compute: "
Signed-off-by: Solomon Hykes <sh.github.6811@hykes.org>
2021-03-06 19:39:22 -08:00

29 lines
484 B
CUE

package main
import (
"dagger.io/dagger"
"dagger.io/netlify"
"dagger.io/yarn"
)
repository: #compute: [
dagger.#FetchGit & {
remote: "https://github.com/kabirbaidhya/react-todo-app.git"
ref: "624041b17bd62292143f99bce474a0e3c2d2dd61"
},
]
todoApp: netlify.#Site & {
account: {
name: "blocklayer"
token: string // Fill using --input-string todoApp.account.token=XXX
}
name: "dagger-test"
contents: yarn.#Script & {
source: repository
run: "build"
}
}