1
0
mirror of https://github.com/fluencelabs/examples synced 2025-05-12 10:57:12 +00:00

16 lines
338 B
Bash
Raw Normal View History

#!/usr/bin/env bash -o errexit -o nounset -o pipefail
./build.sh
echo "Deploying storage"
(
cd artifacts
fldist new_service --name "local_storage" --modules local_storage.wasm:local_storage.json
)
echo "\n\nDeploying curl"
(
cd artifacts
fldist new_service --name "curl_adapter" --modules curl_adapter.wasm:curl_adapter.json
)