├── .banner ├── .github ├── CODEOWNERS ├── CONTRIBUTING.md ├── issue_template.md └── pull_request_template.md ├── .gitignore ├── LICENSE ├── README.md ├── Welcome_to_Ocean_Protocol.png ├── certs └── registry │ ├── registry.crt │ └── registry.key ├── cleanup.sh ├── compose-files ├── dashboard.yml ├── elasticsearch.yml ├── ganache.yml ├── ipfs.yml ├── network_volumes.yml ├── node.yml ├── ocean_contracts.yml ├── registry.yml └── typesense.yml └── start_ocean.sh /.banner: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanprotocol/barge/HEAD/.banner -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanprotocol/barge/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanprotocol/barge/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/issue_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanprotocol/barge/HEAD/.github/issue_template.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanprotocol/barge/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanprotocol/barge/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanprotocol/barge/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanprotocol/barge/HEAD/README.md -------------------------------------------------------------------------------- /Welcome_to_Ocean_Protocol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanprotocol/barge/HEAD/Welcome_to_Ocean_Protocol.png -------------------------------------------------------------------------------- /certs/registry/registry.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanprotocol/barge/HEAD/certs/registry/registry.crt -------------------------------------------------------------------------------- /certs/registry/registry.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanprotocol/barge/HEAD/certs/registry/registry.key -------------------------------------------------------------------------------- /cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanprotocol/barge/HEAD/cleanup.sh -------------------------------------------------------------------------------- /compose-files/dashboard.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanprotocol/barge/HEAD/compose-files/dashboard.yml -------------------------------------------------------------------------------- /compose-files/elasticsearch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanprotocol/barge/HEAD/compose-files/elasticsearch.yml -------------------------------------------------------------------------------- /compose-files/ganache.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanprotocol/barge/HEAD/compose-files/ganache.yml -------------------------------------------------------------------------------- /compose-files/ipfs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanprotocol/barge/HEAD/compose-files/ipfs.yml -------------------------------------------------------------------------------- /compose-files/network_volumes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanprotocol/barge/HEAD/compose-files/network_volumes.yml -------------------------------------------------------------------------------- /compose-files/node.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanprotocol/barge/HEAD/compose-files/node.yml -------------------------------------------------------------------------------- /compose-files/ocean_contracts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanprotocol/barge/HEAD/compose-files/ocean_contracts.yml -------------------------------------------------------------------------------- /compose-files/registry.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanprotocol/barge/HEAD/compose-files/registry.yml -------------------------------------------------------------------------------- /compose-files/typesense.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanprotocol/barge/HEAD/compose-files/typesense.yml -------------------------------------------------------------------------------- /start_ocean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanprotocol/barge/HEAD/start_ocean.sh --------------------------------------------------------------------------------