example: deploy react to netlify
Signed-off-by: Andrea Luzzardi <aluzzardi@gmail.com>
This commit is contained in:
parent
579908dbfa
commit
037dacaf6d
28
examples/react-netlify/main.cue
Normal file
28
examples/react-netlify/main.cue
Normal file
@ -0,0 +1,28 @@
|
||||
package main
|
||||
|
||||
import (
|
||||
"dagger.io/dagger"
|
||||
"dagger.io/netlify"
|
||||
"dagger.io/yarn"
|
||||
)
|
||||
|
||||
repository: #dagger: 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"
|
||||
}
|
||||
}
|
@ -1,6 +1,4 @@
|
||||
// ACME platform: everything you need to develop and ship improvements to
|
||||
// the ACME clothing store.
|
||||
package acme
|
||||
package simple
|
||||
|
||||
import (
|
||||
"dagger.io/dagger"
|
||||
|
Reference in New Issue
Block a user