mirror of
https://github.com/fluencelabs/examples
synced 2025-04-08 02:48:05 +00:00
13 lines
241 B
Bash
13 lines
241 B
Bash
|
#!/bin/sh -euo pipefail
|
||
|
|
||
|
# build wasms
|
||
|
./build.sh
|
||
|
|
||
|
(
|
||
|
cd artifacts
|
||
|
fldist new_service --name "url_downloader" --modules \
|
||
|
curl_adapter.wasm:curl_adapter.json \
|
||
|
local_storage.wasm:local_storage.json \
|
||
|
facade.wasm:facade.json
|
||
|
)
|