From 93e7a340e67df836320af0f243cc095a2aa3402b Mon Sep 17 00:00:00 2001 From: folex <0xdxdy@gmail.com> Date: Thu, 12 Aug 2021 18:03:19 +0300 Subject: [PATCH] README: Add link to Aqua Book, mention NodeJS example --- aqua-examples/aqua-ipfs-integration/README.md | 20 ++++++++++++++----- 1 file changed, 15 insertions(+), 5 deletions(-) diff --git a/aqua-examples/aqua-ipfs-integration/README.md b/aqua-examples/aqua-ipfs-integration/README.md index 3813a9e..66ac201 100644 --- a/aqua-examples/aqua-ipfs-integration/README.md +++ b/aqua-examples/aqua-ipfs-integration/README.md @@ -1,10 +1,13 @@ -# IPFS code execution +# IPFS code execution example This example showcases 2 things: 1. how it's possible to store .wasm modules on IPFS, then deploy them to Fluence as a service 2. ability to process IPFS files via a Fluence service. In this example, we get a size of a file -## How to run & use it -### Web +## Learn about AquaIPFS +See [Aqua Book](https://doc.fluence.dev/aqua-book/libraries/aqua-ipfs). + +## How to run & use this example +### Web example 1. Run it ``` cd web @@ -15,6 +18,13 @@ npm start 2. Press "deploy" 3. Copy WASM service CID and press "get_size" -## Aqua implementation -The business logic is implemented in Aqua in [process.aqua](aqua/src/process_files.aqua) +### NodeJS example +``` +cd nodejs +npm i +npm start +``` + +## Aqua implementation +The business logic is implemented in Aqua in [process.aqua](aqua/src/process.aqua)