mirror of
https://github.com/fluencelabs/fluence-service-template
synced 2024-12-04 16:00:17 +00:00
14 lines
275 B
Bash
Executable File
14 lines
275 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -o errexit -o nounset -o 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
|
|
)
|