123456789101112131415161718192021222324252627282930313233343536 |
- #!/usr/bin/env bash
- set -e
- docker-compose up -d joystream-node
- ./tests/network-tests/run-test-scenario.sh giza-issue-reproduction-setup
- export AUTO_CONFIRM=true
- export ACCOUNT_URI=//testing//worker//Storage//0
- yarn joystream-cli api:setUri ws://localhost:9944
- yarn joystream-cli account:choose --address 5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY
- yarn joystream-cli api:setQueryNodeEndpoint http://localhost:8081/graphql
- yarn storage-node leader:set-bucket-limits -i 0 -s 100 -o 1
- yarn joystream-cli content:createChannel --context Member -i ./cli/examples/content/CreateChannel.json || true
- yarn storage-node leader:update-dynamic-bag-policy -t Channel -n 1
- yarn storage-node leader:update-bucket-status -i 0 --set off
- yarn joystream-cli content:createChannel --context Member -i ./cli/examples/content/CreateChannel.json || true
- yarn storage-node leader:set-bucket-limits -i 0 -s 1000000000 -o 1000
- yarn joystream-cli content:createChannel --context Member -i ./cli/examples/content/CreateChannel.json
|