19 lines
469 B
TOML
19 lines
469 B
TOML
|
spin_manifest_version = 2
|
||
|
|
||
|
[application]
|
||
|
name = "comics"
|
||
|
version = "0.1.0"
|
||
|
authors = ["Peter Kurfer <peter.kurfer@rwe.com>"]
|
||
|
description = ""
|
||
|
|
||
|
[[trigger.http]]
|
||
|
route = "/..."
|
||
|
component = "comics"
|
||
|
|
||
|
[component.comics]
|
||
|
source = "main.wasm"
|
||
|
allowed_outbound_hosts = [ "https://www.monkeyuser.com" ]
|
||
|
[component.comics.build]
|
||
|
command = "tinygo build -target=wasip1 -gc=leaking -no-debug -scheduler=none -buildmode=c-shared -o main.wasm main.go"
|
||
|
watch = ["**/*.go", "go.mod"]
|