> For the complete documentation index, see [llms.txt](https://docs.liquidapps.io/liquidapps-documentation/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.liquidapps.io/liquidapps-documentation/dapp-network-services/dapp-network-services/liquidstorage/getting-started-guide.md).

# Getting Started Guide

## LiquidStorage Getting Started

```
  _      _             _     _  _____ _                             
 | |    (_)           (_)   | |/ ____| |                            
 | |     _  __ _ _   _ _  __| | (___ | |_ ___  _ __ __ _  __ _  ___ 
 | |    | |/ _` | | | | |/ _` |\___ \| __/ _ \| '__/ _` |/ _` |/ _ \
 | |____| | (_| | |_| | | (_| |____) | || (_) | | | (_| | (_| |  __/
 |______|_|\__, |\__,_|_|\__,_|_____/ \__\___/|_|  \__,_|\__, |\___|
              | |                                         __/ |     
              |_|                                        |___/      
```

LiquidStorage allows the read/write of data to a DAPP Service Provider’s IPFS node.

### Prerequisites

* [Zeus](/liquidapps-documentation/working-with-zeus-sdk/overview/install-zeus-and-unboxing.md) - Zeus installs eos and the eosio.cdt if not already installed
* [Kylin Account](/liquidapps-documentation/eosio-guides/testnet-creation-guides/creating-cryptokylin-account.md)

### Unbox LiquidStorage DAPP Service box

This box contains the LiquidStorage example smart contract, DAPP Service Provider node logic, unit tests, [dapp-client](/liquidapps-documentation/introduction/dapp-network-resources/liquidapps-dapp-client.md) source code and examples.

```bash
mkdir storage-dapp-service; cd storage-dapp-service
# npm install -g @liquidapps/zeus-cmd
zeus box create
zeus unbox storage-dapp-service
zeus test -c
```
