mirror of
https://github.com/kou029w/_.git
synced 2025-04-24 05:09:39 +00:00
18 lines
465 B
TOML
18 lines
465 B
TOML
spin_manifest_version = 2
|
|
|
|
[application]
|
|
name = "hello-world-spin"
|
|
version = "0.1.0"
|
|
authors = ["Kohei Watanabe <nebel@fogtype.com>"]
|
|
description = ""
|
|
|
|
[[trigger.http]]
|
|
route = "/..."
|
|
component = "hello-world-spin"
|
|
|
|
[component.hello-world-spin]
|
|
source = "target/wasm32-wasip2/release/hello_world_spin.wasm"
|
|
allowed_outbound_hosts = []
|
|
[component.hello-world-spin.build]
|
|
command = "cargo build --target wasm32-wasip2 --release"
|
|
watch = ["src/**/*.rs", "Cargo.toml"]
|