mirror of
https://github.com/fluencelabs/examples
synced 2025-04-01 23:51:05 +00:00
* init reorg * updated readme * fix CI * remove outdated ipfs-node example * add Readme * update readme, add config file Co-authored-by: folex <0xdxdy@gmail.com>
17 lines
342 B
Bash
Executable File
17 lines
342 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -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
|
|
)
|