examples/url-downloader/deploy_separate.sh
2021-03-18 00:02:36 +03:00

16 lines
308 B
Bash
Executable File

#!/bin/sh -euo 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
)