Merge pull request #186 from cerc-io/erc721-stack-syntax

Stack syntax for ERC721.
This commit is contained in:
Rick Manelius 2023-02-21 09:38:09 -06:00 committed by GitHub
commit 9ccf3ca1af
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -7,13 +7,13 @@ Instructions to deploy a local ERC721 watcher stack (core + watcher) for demonst
* Clone / pull required repositories: * Clone / pull required repositories:
```bash ```bash
$ laconic-so setup-repositories --include cerc-io/go-ethereum,cerc-io/ipld-eth-db,cerc-io/ipld-eth-server,cerc-io/watcher-ts --pull laconic-so --stack erc721 setup-repositories
``` ```
* Build the core and watcher container images: * Build the core and watcher container images:
```bash ```bash
$ laconic-so build-containers --include cerc/go-ethereum,cerc/go-ethereum-foundry,cerc/ipld-eth-db,cerc/ipld-eth-server,cerc/watcher-erc721 laconic-so --stack erc721 build-containers
``` ```
This should create the required docker images in the local image registry. This should create the required docker images in the local image registry.
@ -21,7 +21,7 @@ Instructions to deploy a local ERC721 watcher stack (core + watcher) for demonst
* Deploy the stack: * Deploy the stack:
```bash ```bash
$ laconic-so deploy-system --include db,go-ethereum-foundry,ipld-eth-server,watcher-erc721 up laconic-so --stack erc721 deploy-system up
``` ```
## Demo ## Demo
@ -210,5 +210,5 @@ Instructions to deploy a local ERC721 watcher stack (core + watcher) for demonst
* To stop all the services running in background: * To stop all the services running in background:
```bash ```bash
$ laconic-so deploy-system --include db,go-ethereum-foundry,ipld-eth-server,watcher-erc721 down laconic-so --stack erc721 deploy-system down
``` ```