├── .dockerignore ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── custom.md │ └── feature_request.md ├── PULL_REQUEST_TEMPLATE │ └── pull_request_template.md ├── stale.yml └── workflows │ ├── check-code.yml │ └── docker-image.yml ├── .gitignore ├── .makerc ├── api-engine ├── dashboard ├── functions └── kubernetes ├── .pre-commit-config.yaml ├── .readthedocs.yml ├── CHANGELOG.md ├── CODEOWNERS ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Kconfig ├── LICENSE ├── MAINTAINERS.md ├── Makefile ├── Makefile.old ├── README.md ├── SECURITY.md ├── azure-pipelines.yml ├── bootup ├── docker-compose-files │ ├── docker-compose-dev.yml │ ├── docker-compose.agent.dev.yml │ ├── docker-compose.dev.yml │ ├── docker-compose.server.dev.yml │ └── docker-compose.yml └── kubernetes │ ├── Makefile │ └── templates │ ├── api-engine-tasks │ └── deploy.tmpl │ ├── api-engine │ ├── config.tmpl │ ├── deploy-dev.tmpl │ ├── deploy.tmpl │ ├── ingress.tmpl │ └── service.tmpl │ ├── nginx │ ├── config.tmpl │ ├── deploy.tmpl │ ├── ingress.tmpl │ └── service.tmpl │ ├── postgres │ ├── config.tmpl │ ├── deploy.tmpl │ └── service.tmpl │ └── redis │ ├── deploy.tmpl │ └── service.tmpl ├── ci ├── azure-pipelines.yml ├── check-component.yml ├── check-license-and-docs.yml ├── dashandapi_post.yml ├── dashandapi_pre.yml └── process-components.yml ├── docs ├── agents │ ├── fabric-operator.md │ └── kubernetes.md ├── concepts.md ├── contributing.md ├── design │ └── arch.md ├── faq.md ├── images │ ├── architecture.png │ ├── favicon.png │ ├── logo.svg │ ├── menuconfig.png │ └── scenario.png ├── index.md ├── operations │ └── dashboard │ │ ├── admin.md │ │ ├── operator.md │ │ └── user.md ├── reference │ ├── commands │ │ ├── cli.md │ │ └── make.md │ └── configuration │ │ └── server.md ├── release_note.md ├── requirements.txt ├── setup │ └── server.md └── tutorials │ ├── agent.md │ ├── channel.md │ ├── introduction.md │ ├── node.md │ ├── organization.md │ ├── prerequisites.md │ └── server.md ├── kconfig-lib ├── alldefconfig.py ├── kconfiglib.py ├── menuconfig.py └── oldconfig.py ├── mkdocs.yml ├── release_notes ├── v0.6.txt ├── v0.7.txt ├── v0.8.0-alpha.txt ├── v0.8.0-beta.txt ├── v0.8.0.txt ├── v0.9.0-alpha.txt ├── v0.9.0-beta.txt └── v0.9.0.txt ├── repolint.json ├── scripts ├── README.md ├── changelog.sh ├── check_license.sh ├── exclude-patterns ├── header.sh ├── master_node │ ├── build_images.sh │ ├── build_js.sh │ ├── download_images.sh │ ├── setup.sh │ ├── start_cadvisor.sh │ ├── start_mongoexpress.sh │ └── start_netdata.sh └── worker_node │ ├── download_images.sh │ ├── setup.sh │ ├── setup_worker_node_docker.sh │ ├── setup_worker_node_k8s.sh │ └── setup_worker_node_swarm.sh ├── src ├── agent │ ├── docker-rest-agent │ │ ├── README.md │ │ ├── gunicorn.conf.py │ │ ├── intergration-test │ │ │ ├── block.zip │ │ │ ├── msp.zip │ │ │ ├── orderer_config.zip │ │ │ ├── peer_config.zip │ │ │ ├── test.py │ │ │ └── tls.zip │ │ ├── pip.conf │ │ ├── requirements.txt │ │ └── server.py │ ├── k8s-rest-agent │ │ ├── Dockerfile │ │ ├── entrypoint.sh │ │ ├── pip │ │ │ └── pip.conf │ │ ├── requirements.txt │ │ ├── src │ │ │ ├── api │ │ │ │ ├── __init__.py │ │ │ │ ├── admin.py │ │ │ │ ├── apps.py │ │ │ │ ├── auth.py │ │ │ │ ├── management │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── commands │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── test_task.py │ │ │ │ ├── migrations │ │ │ │ │ └── __init__.py │ │ │ │ ├── models │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── user.py │ │ │ │ ├── routes │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── hello │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── views.py │ │ │ │ ├── tasks │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── task │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── example.py │ │ │ │ ├── tests.py │ │ │ │ ├── utils │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── common │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── db.py │ │ │ │ │ │ └── swagger.py │ │ │ │ │ ├── db_functions.py │ │ │ │ │ ├── enums.py │ │ │ │ │ ├── exception_handler.py │ │ │ │ │ ├── fast_enum.py │ │ │ │ │ ├── jwt.py │ │ │ │ │ ├── mixins.py │ │ │ │ │ └── serializers.py │ │ │ │ └── views.py │ │ │ ├── manage.py │ │ │ └── server │ │ │ │ ├── __init__.py │ │ │ │ ├── asgi.py │ │ │ │ ├── celery.py │ │ │ │ ├── settings.py │ │ │ │ ├── urls.py │ │ │ │ └── wsgi.py │ │ ├── supervisor │ │ │ ├── conf.d │ │ │ │ └── server.conf │ │ │ └── supervisord.conf │ │ └── uwsgi │ │ │ └── server.ini │ └── kubernetes-agent │ │ ├── Dockerfile │ │ ├── requirements.txt │ │ └── src │ │ ├── __init__.py │ │ ├── main.py │ │ ├── network │ │ ├── __init__.py │ │ └── fabric │ │ │ ├── __init__.py │ │ │ └── peer_initial_ca.sh │ │ ├── operations │ │ ├── __init__.py │ │ ├── create_node.py │ │ ├── delete_node.py │ │ ├── fabric_ca_register.py │ │ └── fabric_ca_register.sh │ │ └── utils │ │ ├── __init__.py │ │ ├── client.py │ │ ├── download.py │ │ └── env.py ├── api-engine │ ├── api │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── apps.py │ │ ├── auth.py │ │ ├── common │ │ │ ├── __init__.py │ │ │ ├── enums.py │ │ │ ├── response.py │ │ │ └── serializers.py │ │ ├── config.py │ │ ├── exceptions.py │ │ ├── lib │ │ │ ├── __init__.py │ │ │ ├── agent │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ ├── docker │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── fabric │ │ │ │ │ │ └── __init__.py │ │ │ │ │ └── handler.py │ │ │ │ ├── handler.py │ │ │ │ ├── kubernetes │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── common.py │ │ │ │ │ └── fabric │ │ │ │ │ │ └── __init__.py │ │ │ │ └── network_base.py │ │ │ ├── configtxgen │ │ │ │ ├── __init__.py │ │ │ │ ├── configtx.py │ │ │ │ └── configtxgen.py │ │ │ ├── configtxlator │ │ │ │ ├── __init__.py │ │ │ │ └── configtxlator.py │ │ │ ├── peer │ │ │ │ ├── __init__.py │ │ │ │ ├── chaincode.py │ │ │ │ ├── channel.py │ │ │ │ └── command.py │ │ │ └── pki │ │ │ │ ├── __init__.py │ │ │ │ └── cryptogen │ │ │ │ ├── __init__.py │ │ │ │ ├── cryptocfg.py │ │ │ │ └── cryptogen.py │ │ ├── management │ │ │ ├── __init__.py │ │ │ └── commands │ │ │ │ ├── __init__.py │ │ │ │ └── create_user.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ ├── 0002_userprofile_created_at_alter_agent_name_and_more.py │ │ │ ├── 0003_alter_agent_name_alter_agent_urls.py │ │ │ └── __init__.py │ │ ├── models.py │ │ ├── routes │ │ │ ├── __init__.py │ │ │ ├── agent │ │ │ │ ├── __init__.py │ │ │ │ ├── serializers.py │ │ │ │ └── views.py │ │ │ ├── chaincode │ │ │ │ ├── __init__.py │ │ │ │ ├── serializers.py │ │ │ │ └── views.py │ │ │ ├── channel │ │ │ │ ├── __init__.py │ │ │ │ ├── serializers.py │ │ │ │ └── views.py │ │ │ ├── cluster │ │ │ │ ├── __init__.py │ │ │ │ ├── serializers.py │ │ │ │ └── views.py │ │ │ ├── file │ │ │ │ ├── __init__.py │ │ │ │ ├── serializers.py │ │ │ │ └── views.py │ │ │ ├── general │ │ │ │ ├── __init__.py │ │ │ │ ├── serializers.py │ │ │ │ └── views.py │ │ │ ├── network │ │ │ │ ├── __init__.py │ │ │ │ ├── serializers.py │ │ │ │ └── views.py │ │ │ ├── node │ │ │ │ ├── __init__.py │ │ │ │ ├── serializers.py │ │ │ │ └── views.py │ │ │ ├── organization │ │ │ │ ├── __init__.py │ │ │ │ ├── serializers.py │ │ │ │ └── views.py │ │ │ └── user │ │ │ │ ├── __init__.py │ │ │ │ ├── serializers.py │ │ │ │ └── views.py │ │ ├── tasks │ │ │ ├── __init__.py │ │ │ └── agent.py │ │ ├── tests.py │ │ ├── utils │ │ │ ├── __init__.py │ │ │ ├── common.py │ │ │ ├── jwt.py │ │ │ ├── node_config.py │ │ │ └── port_picker.py │ │ ├── validators.py │ │ └── views.py │ ├── api_engine │ │ ├── __init__.py │ │ ├── celery.py │ │ ├── settings.py.example │ │ ├── urls.py │ │ └── wsgi.py │ ├── manage.py │ ├── requirements.txt │ └── tox.ini └── dashboard │ ├── .eslintignore │ ├── .eslintrc.js │ ├── .prettierignore │ ├── .prettierrc │ ├── .stylelintrc.json │ ├── Makefile │ ├── config │ ├── config.js │ ├── plugin.config.js │ ├── router.config.js │ └── theme.js │ ├── dist │ ├── favicon.png │ └── icons │ │ ├── icon-128x128.png │ │ ├── icon-192x192.png │ │ └── icon-512x512.png │ ├── lambda │ ├── api.js │ └── mock │ │ └── matchMock.js │ ├── mock │ ├── agent.js │ ├── channel.js │ ├── network.js │ ├── node.js │ ├── organization.js │ └── user.js │ ├── netlify.toml │ ├── package.json │ ├── public │ ├── avatar.png │ ├── favicon.png │ └── icons │ │ ├── icon-128x128.png │ │ ├── icon-192x192.png │ │ └── icon-512x512.png │ ├── scripts │ ├── generateMock.js │ ├── getPrettierFiles.js │ ├── lint-prettier.js │ └── prettier.js │ ├── src │ ├── app.js │ ├── assets │ │ └── logo.svg │ ├── components │ │ ├── Authorized │ │ │ ├── Authorized.js │ │ │ ├── AuthorizedRoute.js │ │ │ ├── CheckPermissions.js │ │ │ ├── CheckPermissions.test.js │ │ │ ├── PromiseRender.js │ │ │ ├── Secured.js │ │ │ ├── index.js │ │ │ └── renderAuthorize.js │ │ ├── Exception │ │ │ ├── index.js │ │ │ ├── index.less │ │ │ └── typeConfig.js │ │ ├── FooterToolbar │ │ │ ├── index.js │ │ │ └── index.less │ │ ├── GlobalFooter │ │ │ ├── index.js │ │ │ └── index.less │ │ ├── GlobalHeader │ │ │ ├── RightContent.js │ │ │ ├── index.js │ │ │ └── index.less │ │ ├── HeaderDropdown │ │ │ ├── index.js │ │ │ └── index.less │ │ ├── IconFont │ │ │ └── index.js │ │ ├── Login │ │ │ ├── LoginItem.js │ │ │ ├── LoginSubmit.js │ │ │ ├── LoginTab.js │ │ │ ├── index.js │ │ │ ├── index.less │ │ │ ├── loginContext.js │ │ │ └── map.js │ │ ├── PageHeaderWrapper │ │ │ ├── GridContent.js │ │ │ ├── GridContent.less │ │ │ ├── breadcrumb.js │ │ │ ├── index.js │ │ │ └── index.less │ │ ├── PageLoading │ │ │ └── index.js │ │ ├── SelectLang │ │ │ ├── index.js │ │ │ └── index.less │ │ ├── SettingDrawer │ │ │ ├── BlockCheckbox.js │ │ │ ├── ThemeColor.js │ │ │ ├── ThemeColor.less │ │ │ ├── index.js │ │ │ └── index.less │ │ ├── SiderMenu │ │ │ ├── BaseMenu.js │ │ │ ├── SiderMenu.js │ │ │ ├── SiderMenu.test.js │ │ │ ├── SiderMenuUtils.js │ │ │ ├── index.js │ │ │ └── index.less │ │ ├── StandardTable │ │ │ ├── index.js │ │ │ └── index.less │ │ ├── TopNavHeader │ │ │ ├── index.js │ │ │ └── index.less │ │ └── _utils │ │ │ ├── pathTools.js │ │ │ └── pathTools.test.js │ ├── defaultSettings.js │ ├── e2e │ │ ├── baseLayout.e2e.js │ │ ├── home.e2e.js │ │ ├── login.e2e.js │ │ ├── topMenu.e2e.js │ │ └── userLayout.e2e.js │ ├── global.js │ ├── global.less │ ├── layouts │ │ ├── BasicLayout.js │ │ ├── BasicLayout.less │ │ ├── BlankLayout.js │ │ ├── Footer.js │ │ ├── Header.js │ │ ├── Header.less │ │ ├── MenuContext.js │ │ ├── SecurityLayout.jsx │ │ ├── UserLayout.js │ │ └── UserLayout.less │ ├── locales │ │ ├── en-US.js │ │ ├── en-US │ │ │ ├── Agent.js │ │ │ ├── Chaincode.js │ │ │ ├── Channel.js │ │ │ ├── Network.js │ │ │ ├── Node.js │ │ │ ├── Organization.js │ │ │ ├── component.js │ │ │ ├── exception.js │ │ │ ├── fabric │ │ │ │ └── ca.js │ │ │ ├── form.js │ │ │ ├── globalHeader.js │ │ │ ├── login.js │ │ │ ├── menu.js │ │ │ ├── operatorUser.js │ │ │ └── pwa.js │ │ ├── zh-CN.js │ │ └── zh-CN │ │ │ ├── Agent.js │ │ │ ├── Chaincode.js │ │ │ ├── Channel.js │ │ │ ├── Network.js │ │ │ ├── Node.js │ │ │ ├── Organization.js │ │ │ ├── component.js │ │ │ ├── exception.js │ │ │ ├── fabric │ │ │ └── ca.js │ │ │ ├── form.js │ │ │ ├── globalHeader.js │ │ │ ├── login.js │ │ │ ├── menu.js │ │ │ ├── operatorUser.js │ │ │ └── pwa.js │ ├── manifest.json │ ├── models │ │ ├── agent.js │ │ ├── chaincode.js │ │ ├── channel.js │ │ ├── global.js │ │ ├── login.js │ │ ├── menu.js │ │ ├── network.js │ │ ├── node.js │ │ ├── organization.js │ │ ├── setting.js │ │ └── user.js │ ├── pages │ │ ├── 404.js │ │ ├── Agent.js │ │ ├── Agent │ │ │ ├── Agent.js │ │ │ └── newAgent.js │ │ ├── Authorized.js │ │ ├── ChainCode │ │ │ ├── ChainCode.js │ │ │ ├── forms │ │ │ │ ├── ApproveForm.js │ │ │ │ ├── CommitForm.js │ │ │ │ ├── InstallForm.js │ │ │ │ └── UploadForm.js │ │ │ └── styles.less │ │ ├── Channel │ │ │ ├── Channel.js │ │ │ └── styles.less │ │ ├── Exception │ │ │ ├── 403.js │ │ │ ├── 404.js │ │ │ ├── 500.js │ │ │ ├── TriggerException.js │ │ │ ├── models │ │ │ │ └── error.js │ │ │ └── style.less │ │ ├── Network │ │ │ ├── Network.js │ │ │ ├── newNetwork.js │ │ │ └── styles.less │ │ ├── Node │ │ │ ├── New │ │ │ │ ├── Fabric │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── orderer.js │ │ │ │ │ └── peer.js │ │ │ │ ├── basicInfo.js │ │ │ │ ├── index.js │ │ │ │ ├── nodeInfo.js │ │ │ │ └── styles.less │ │ │ └── index.js │ │ ├── Organization │ │ │ └── Organization.js │ │ ├── Overview │ │ │ └── index.js │ │ ├── User │ │ │ ├── Login.js │ │ │ └── Login.less │ │ ├── UserManagement │ │ │ └── UserManagement.js │ │ ├── document.ejs │ │ └── styles.less │ ├── service-worker.js │ ├── services │ │ ├── agent.js │ │ ├── api.js │ │ ├── chaincode.js │ │ ├── channel.js │ │ ├── error.js │ │ ├── network.js │ │ ├── node.js │ │ ├── organization.js │ │ └── user.js │ └── utils │ │ ├── Authorized.js │ │ ├── authority.js │ │ ├── authority.test.js │ │ ├── getPageTitle.js │ │ ├── networks.js │ │ ├── request.js │ │ ├── utils.js │ │ ├── utils.less │ │ └── utils.test.js │ ├── tests │ ├── run-tests.js │ └── setupTests.js │ └── yarn.lock ├── template └── node │ ├── core.yaml.bak │ └── orderer.yaml.bak ├── tests ├── dashboard │ └── docker-compose.yml └── postman │ ├── README.md │ ├── basic.tar.gz │ ├── collections │ ├── Cello Engine CI Test.postman_collection.json │ └── Hyperledger Cello Api Engine.postman_collection.json │ └── docker-compose.dev.yml └── thirdparty └── helm ├── cello-master ├── Chart.yaml ├── requirements.lock ├── requirements.yaml ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── deployment.yaml │ ├── ingress.yaml │ ├── minio-pv.yaml │ ├── mongo-pv.yaml │ ├── mongo-pvc.yaml │ ├── nfs-pv.yaml │ ├── nfs-pvc.yaml │ ├── service.yaml │ ├── user-dashboard-pv.yaml │ └── user-dashboard-pvc.yaml └── values.yaml └── fabric-chart ├── Chart.yaml ├── README.md ├── templates ├── ca │ ├── _ca_dpy.tpl │ └── _ca_svc.tpl ├── cli │ └── _cli_dpy.tpl ├── common │ ├── _helpers.tpl │ ├── _ingress.tpl │ ├── _namespace.tpl │ ├── _pv.tpl │ └── _pvc.tpl ├── kafka │ ├── _kafka_dpy.tpl │ └── _kafka_svc.tpl ├── orderer.yaml ├── orderer │ ├── _orderer_default_dpy.tpl │ ├── _orderer_kafka_dpy.tpl │ └── _orderer_svc.tpl ├── peer.yaml ├── peer │ ├── _peer_dpy.tpl │ └── _peer_svc.tpl └── zookeeper │ ├── _zookeeper_dpy.tpl │ └── _zookeeper_svc.tpl └── values.yaml /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/custom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/.github/ISSUE_TEMPLATE/custom.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/.github/PULL_REQUEST_TEMPLATE/pull_request_template.md -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.github/workflows/check-code.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/.github/workflows/check-code.yml -------------------------------------------------------------------------------- /.github/workflows/docker-image.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/.github/workflows/docker-image.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/.gitignore -------------------------------------------------------------------------------- /.makerc/api-engine: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/.makerc/api-engine -------------------------------------------------------------------------------- /.makerc/dashboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/.makerc/dashboard -------------------------------------------------------------------------------- /.makerc/functions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/.makerc/functions -------------------------------------------------------------------------------- /.makerc/kubernetes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/.makerc/kubernetes -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/Kconfig -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/LICENSE -------------------------------------------------------------------------------- /MAINTAINERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/MAINTAINERS.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/Makefile -------------------------------------------------------------------------------- /Makefile.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/Makefile.old -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/SECURITY.md -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /bootup/docker-compose-files/docker-compose-dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/bootup/docker-compose-files/docker-compose-dev.yml -------------------------------------------------------------------------------- /bootup/docker-compose-files/docker-compose.agent.dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/bootup/docker-compose-files/docker-compose.agent.dev.yml -------------------------------------------------------------------------------- /bootup/docker-compose-files/docker-compose.dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/bootup/docker-compose-files/docker-compose.dev.yml -------------------------------------------------------------------------------- /bootup/docker-compose-files/docker-compose.server.dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/bootup/docker-compose-files/docker-compose.server.dev.yml -------------------------------------------------------------------------------- /bootup/docker-compose-files/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/bootup/docker-compose-files/docker-compose.yml -------------------------------------------------------------------------------- /bootup/kubernetes/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/bootup/kubernetes/Makefile -------------------------------------------------------------------------------- /bootup/kubernetes/templates/api-engine-tasks/deploy.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/bootup/kubernetes/templates/api-engine-tasks/deploy.tmpl -------------------------------------------------------------------------------- /bootup/kubernetes/templates/api-engine/config.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/bootup/kubernetes/templates/api-engine/config.tmpl -------------------------------------------------------------------------------- /bootup/kubernetes/templates/api-engine/deploy-dev.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/bootup/kubernetes/templates/api-engine/deploy-dev.tmpl -------------------------------------------------------------------------------- /bootup/kubernetes/templates/api-engine/deploy.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/bootup/kubernetes/templates/api-engine/deploy.tmpl -------------------------------------------------------------------------------- /bootup/kubernetes/templates/api-engine/ingress.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/bootup/kubernetes/templates/api-engine/ingress.tmpl -------------------------------------------------------------------------------- /bootup/kubernetes/templates/api-engine/service.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/bootup/kubernetes/templates/api-engine/service.tmpl -------------------------------------------------------------------------------- /bootup/kubernetes/templates/nginx/config.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/bootup/kubernetes/templates/nginx/config.tmpl -------------------------------------------------------------------------------- /bootup/kubernetes/templates/nginx/deploy.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/bootup/kubernetes/templates/nginx/deploy.tmpl -------------------------------------------------------------------------------- /bootup/kubernetes/templates/nginx/ingress.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/bootup/kubernetes/templates/nginx/ingress.tmpl -------------------------------------------------------------------------------- /bootup/kubernetes/templates/nginx/service.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/bootup/kubernetes/templates/nginx/service.tmpl -------------------------------------------------------------------------------- /bootup/kubernetes/templates/postgres/config.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/bootup/kubernetes/templates/postgres/config.tmpl -------------------------------------------------------------------------------- /bootup/kubernetes/templates/postgres/deploy.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/bootup/kubernetes/templates/postgres/deploy.tmpl -------------------------------------------------------------------------------- /bootup/kubernetes/templates/postgres/service.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/bootup/kubernetes/templates/postgres/service.tmpl -------------------------------------------------------------------------------- /bootup/kubernetes/templates/redis/deploy.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/bootup/kubernetes/templates/redis/deploy.tmpl -------------------------------------------------------------------------------- /bootup/kubernetes/templates/redis/service.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/bootup/kubernetes/templates/redis/service.tmpl -------------------------------------------------------------------------------- /ci/azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/ci/azure-pipelines.yml -------------------------------------------------------------------------------- /ci/check-component.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/ci/check-component.yml -------------------------------------------------------------------------------- /ci/check-license-and-docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/ci/check-license-and-docs.yml -------------------------------------------------------------------------------- /ci/dashandapi_post.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/ci/dashandapi_post.yml -------------------------------------------------------------------------------- /ci/dashandapi_pre.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/ci/dashandapi_pre.yml -------------------------------------------------------------------------------- /ci/process-components.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/ci/process-components.yml -------------------------------------------------------------------------------- /docs/agents/fabric-operator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/docs/agents/fabric-operator.md -------------------------------------------------------------------------------- /docs/agents/kubernetes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/docs/agents/kubernetes.md -------------------------------------------------------------------------------- /docs/concepts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/docs/concepts.md -------------------------------------------------------------------------------- /docs/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/docs/contributing.md -------------------------------------------------------------------------------- /docs/design/arch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/docs/design/arch.md -------------------------------------------------------------------------------- /docs/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/docs/faq.md -------------------------------------------------------------------------------- /docs/images/architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/docs/images/architecture.png -------------------------------------------------------------------------------- /docs/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/docs/images/favicon.png -------------------------------------------------------------------------------- /docs/images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/docs/images/logo.svg -------------------------------------------------------------------------------- /docs/images/menuconfig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/docs/images/menuconfig.png -------------------------------------------------------------------------------- /docs/images/scenario.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/docs/images/scenario.png -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/operations/dashboard/admin.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/operations/dashboard/operator.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/operations/dashboard/user.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/reference/commands/cli.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/docs/reference/commands/cli.md -------------------------------------------------------------------------------- /docs/reference/commands/make.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/docs/reference/commands/make.md -------------------------------------------------------------------------------- /docs/reference/configuration/server.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/docs/reference/configuration/server.md -------------------------------------------------------------------------------- /docs/release_note.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/docs/release_note.md -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /docs/setup/server.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/docs/setup/server.md -------------------------------------------------------------------------------- /docs/tutorials/agent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/docs/tutorials/agent.md -------------------------------------------------------------------------------- /docs/tutorials/channel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/docs/tutorials/channel.md -------------------------------------------------------------------------------- /docs/tutorials/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/docs/tutorials/introduction.md -------------------------------------------------------------------------------- /docs/tutorials/node.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/docs/tutorials/node.md -------------------------------------------------------------------------------- /docs/tutorials/organization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/docs/tutorials/organization.md -------------------------------------------------------------------------------- /docs/tutorials/prerequisites.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/docs/tutorials/prerequisites.md -------------------------------------------------------------------------------- /docs/tutorials/server.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/docs/tutorials/server.md -------------------------------------------------------------------------------- /kconfig-lib/alldefconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/kconfig-lib/alldefconfig.py -------------------------------------------------------------------------------- /kconfig-lib/kconfiglib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/kconfig-lib/kconfiglib.py -------------------------------------------------------------------------------- /kconfig-lib/menuconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/kconfig-lib/menuconfig.py -------------------------------------------------------------------------------- /kconfig-lib/oldconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/kconfig-lib/oldconfig.py -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /release_notes/v0.6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/release_notes/v0.6.txt -------------------------------------------------------------------------------- /release_notes/v0.7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/release_notes/v0.7.txt -------------------------------------------------------------------------------- /release_notes/v0.8.0-alpha.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/release_notes/v0.8.0-alpha.txt -------------------------------------------------------------------------------- /release_notes/v0.8.0-beta.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/release_notes/v0.8.0-beta.txt -------------------------------------------------------------------------------- /release_notes/v0.8.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/release_notes/v0.8.0.txt -------------------------------------------------------------------------------- /release_notes/v0.9.0-alpha.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/release_notes/v0.9.0-alpha.txt -------------------------------------------------------------------------------- /release_notes/v0.9.0-beta.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/release_notes/v0.9.0-beta.txt -------------------------------------------------------------------------------- /release_notes/v0.9.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/release_notes/v0.9.0.txt -------------------------------------------------------------------------------- /repolint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/repolint.json -------------------------------------------------------------------------------- /scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/scripts/README.md -------------------------------------------------------------------------------- /scripts/changelog.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/scripts/changelog.sh -------------------------------------------------------------------------------- /scripts/check_license.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/scripts/check_license.sh -------------------------------------------------------------------------------- /scripts/exclude-patterns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/scripts/exclude-patterns -------------------------------------------------------------------------------- /scripts/header.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/scripts/header.sh -------------------------------------------------------------------------------- /scripts/master_node/build_images.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/scripts/master_node/build_images.sh -------------------------------------------------------------------------------- /scripts/master_node/build_js.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/scripts/master_node/build_js.sh -------------------------------------------------------------------------------- /scripts/master_node/download_images.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/scripts/master_node/download_images.sh -------------------------------------------------------------------------------- /scripts/master_node/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/scripts/master_node/setup.sh -------------------------------------------------------------------------------- /scripts/master_node/start_cadvisor.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/scripts/master_node/start_cadvisor.sh -------------------------------------------------------------------------------- /scripts/master_node/start_mongoexpress.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/scripts/master_node/start_mongoexpress.sh -------------------------------------------------------------------------------- /scripts/master_node/start_netdata.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/scripts/master_node/start_netdata.sh -------------------------------------------------------------------------------- /scripts/worker_node/download_images.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/scripts/worker_node/download_images.sh -------------------------------------------------------------------------------- /scripts/worker_node/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/scripts/worker_node/setup.sh -------------------------------------------------------------------------------- /scripts/worker_node/setup_worker_node_docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/scripts/worker_node/setup_worker_node_docker.sh -------------------------------------------------------------------------------- /scripts/worker_node/setup_worker_node_k8s.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/scripts/worker_node/setup_worker_node_k8s.sh -------------------------------------------------------------------------------- /scripts/worker_node/setup_worker_node_swarm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/scripts/worker_node/setup_worker_node_swarm.sh -------------------------------------------------------------------------------- /src/agent/docker-rest-agent/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/agent/docker-rest-agent/README.md -------------------------------------------------------------------------------- /src/agent/docker-rest-agent/gunicorn.conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/agent/docker-rest-agent/gunicorn.conf.py -------------------------------------------------------------------------------- /src/agent/docker-rest-agent/intergration-test/block.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/agent/docker-rest-agent/intergration-test/block.zip -------------------------------------------------------------------------------- /src/agent/docker-rest-agent/intergration-test/msp.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/agent/docker-rest-agent/intergration-test/msp.zip -------------------------------------------------------------------------------- /src/agent/docker-rest-agent/intergration-test/orderer_config.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/agent/docker-rest-agent/intergration-test/orderer_config.zip -------------------------------------------------------------------------------- /src/agent/docker-rest-agent/intergration-test/peer_config.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/agent/docker-rest-agent/intergration-test/peer_config.zip -------------------------------------------------------------------------------- /src/agent/docker-rest-agent/intergration-test/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/agent/docker-rest-agent/intergration-test/test.py -------------------------------------------------------------------------------- /src/agent/docker-rest-agent/intergration-test/tls.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/agent/docker-rest-agent/intergration-test/tls.zip -------------------------------------------------------------------------------- /src/agent/docker-rest-agent/pip.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/agent/docker-rest-agent/pip.conf -------------------------------------------------------------------------------- /src/agent/docker-rest-agent/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/agent/docker-rest-agent/requirements.txt -------------------------------------------------------------------------------- /src/agent/docker-rest-agent/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/agent/docker-rest-agent/server.py -------------------------------------------------------------------------------- /src/agent/k8s-rest-agent/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/agent/k8s-rest-agent/Dockerfile -------------------------------------------------------------------------------- /src/agent/k8s-rest-agent/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/agent/k8s-rest-agent/entrypoint.sh -------------------------------------------------------------------------------- /src/agent/k8s-rest-agent/pip/pip.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/agent/k8s-rest-agent/pip/pip.conf -------------------------------------------------------------------------------- /src/agent/k8s-rest-agent/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/agent/k8s-rest-agent/requirements.txt -------------------------------------------------------------------------------- /src/agent/k8s-rest-agent/src/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/agent/k8s-rest-agent/src/api/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/agent/k8s-rest-agent/src/api/admin.py -------------------------------------------------------------------------------- /src/agent/k8s-rest-agent/src/api/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/agent/k8s-rest-agent/src/api/apps.py -------------------------------------------------------------------------------- /src/agent/k8s-rest-agent/src/api/auth.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/agent/k8s-rest-agent/src/api/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/agent/k8s-rest-agent/src/api/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/agent/k8s-rest-agent/src/api/management/commands/test_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/agent/k8s-rest-agent/src/api/management/commands/test_task.py -------------------------------------------------------------------------------- /src/agent/k8s-rest-agent/src/api/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/agent/k8s-rest-agent/src/api/models/__init__.py: -------------------------------------------------------------------------------- 1 | from .user import User, Profile 2 | -------------------------------------------------------------------------------- /src/agent/k8s-rest-agent/src/api/models/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/agent/k8s-rest-agent/src/api/models/user.py -------------------------------------------------------------------------------- /src/agent/k8s-rest-agent/src/api/routes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/agent/k8s-rest-agent/src/api/routes/hello/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/agent/k8s-rest-agent/src/api/routes/hello/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/agent/k8s-rest-agent/src/api/routes/hello/views.py -------------------------------------------------------------------------------- /src/agent/k8s-rest-agent/src/api/tasks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/agent/k8s-rest-agent/src/api/tasks/__init__.py -------------------------------------------------------------------------------- /src/agent/k8s-rest-agent/src/api/tasks/task/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/agent/k8s-rest-agent/src/api/tasks/task/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/agent/k8s-rest-agent/src/api/tasks/task/example.py -------------------------------------------------------------------------------- /src/agent/k8s-rest-agent/src/api/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/agent/k8s-rest-agent/src/api/tests.py -------------------------------------------------------------------------------- /src/agent/k8s-rest-agent/src/api/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/agent/k8s-rest-agent/src/api/utils/common/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/agent/k8s-rest-agent/src/api/utils/common/__init__.py -------------------------------------------------------------------------------- /src/agent/k8s-rest-agent/src/api/utils/common/db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/agent/k8s-rest-agent/src/api/utils/common/db.py -------------------------------------------------------------------------------- /src/agent/k8s-rest-agent/src/api/utils/common/swagger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/agent/k8s-rest-agent/src/api/utils/common/swagger.py -------------------------------------------------------------------------------- /src/agent/k8s-rest-agent/src/api/utils/db_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/agent/k8s-rest-agent/src/api/utils/db_functions.py -------------------------------------------------------------------------------- /src/agent/k8s-rest-agent/src/api/utils/enums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/agent/k8s-rest-agent/src/api/utils/enums.py -------------------------------------------------------------------------------- /src/agent/k8s-rest-agent/src/api/utils/exception_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/agent/k8s-rest-agent/src/api/utils/exception_handler.py -------------------------------------------------------------------------------- /src/agent/k8s-rest-agent/src/api/utils/fast_enum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/agent/k8s-rest-agent/src/api/utils/fast_enum.py -------------------------------------------------------------------------------- /src/agent/k8s-rest-agent/src/api/utils/jwt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/agent/k8s-rest-agent/src/api/utils/jwt.py -------------------------------------------------------------------------------- /src/agent/k8s-rest-agent/src/api/utils/mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/agent/k8s-rest-agent/src/api/utils/mixins.py -------------------------------------------------------------------------------- /src/agent/k8s-rest-agent/src/api/utils/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/agent/k8s-rest-agent/src/api/utils/serializers.py -------------------------------------------------------------------------------- /src/agent/k8s-rest-agent/src/api/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /src/agent/k8s-rest-agent/src/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/agent/k8s-rest-agent/src/manage.py -------------------------------------------------------------------------------- /src/agent/k8s-rest-agent/src/server/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/agent/k8s-rest-agent/src/server/__init__.py -------------------------------------------------------------------------------- /src/agent/k8s-rest-agent/src/server/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/agent/k8s-rest-agent/src/server/asgi.py -------------------------------------------------------------------------------- /src/agent/k8s-rest-agent/src/server/celery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/agent/k8s-rest-agent/src/server/celery.py -------------------------------------------------------------------------------- /src/agent/k8s-rest-agent/src/server/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/agent/k8s-rest-agent/src/server/settings.py -------------------------------------------------------------------------------- /src/agent/k8s-rest-agent/src/server/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/agent/k8s-rest-agent/src/server/urls.py -------------------------------------------------------------------------------- /src/agent/k8s-rest-agent/src/server/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/agent/k8s-rest-agent/src/server/wsgi.py -------------------------------------------------------------------------------- /src/agent/k8s-rest-agent/supervisor/conf.d/server.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/agent/k8s-rest-agent/supervisor/conf.d/server.conf -------------------------------------------------------------------------------- /src/agent/k8s-rest-agent/supervisor/supervisord.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/agent/k8s-rest-agent/supervisor/supervisord.conf -------------------------------------------------------------------------------- /src/agent/k8s-rest-agent/uwsgi/server.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/agent/k8s-rest-agent/uwsgi/server.ini -------------------------------------------------------------------------------- /src/agent/kubernetes-agent/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/agent/kubernetes-agent/Dockerfile -------------------------------------------------------------------------------- /src/agent/kubernetes-agent/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/agent/kubernetes-agent/requirements.txt -------------------------------------------------------------------------------- /src/agent/kubernetes-agent/src/__init__.py: -------------------------------------------------------------------------------- 1 | # 2 | # SPDX-License-Identifier: Apache-2.0 3 | # 4 | -------------------------------------------------------------------------------- /src/agent/kubernetes-agent/src/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/agent/kubernetes-agent/src/main.py -------------------------------------------------------------------------------- /src/agent/kubernetes-agent/src/network/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/agent/kubernetes-agent/src/network/__init__.py -------------------------------------------------------------------------------- /src/agent/kubernetes-agent/src/network/fabric/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/agent/kubernetes-agent/src/network/fabric/__init__.py -------------------------------------------------------------------------------- /src/agent/kubernetes-agent/src/network/fabric/peer_initial_ca.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/agent/kubernetes-agent/src/network/fabric/peer_initial_ca.sh -------------------------------------------------------------------------------- /src/agent/kubernetes-agent/src/operations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/agent/kubernetes-agent/src/operations/__init__.py -------------------------------------------------------------------------------- /src/agent/kubernetes-agent/src/operations/create_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/agent/kubernetes-agent/src/operations/create_node.py -------------------------------------------------------------------------------- /src/agent/kubernetes-agent/src/operations/delete_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/agent/kubernetes-agent/src/operations/delete_node.py -------------------------------------------------------------------------------- /src/agent/kubernetes-agent/src/operations/fabric_ca_register.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/agent/kubernetes-agent/src/operations/fabric_ca_register.py -------------------------------------------------------------------------------- /src/agent/kubernetes-agent/src/operations/fabric_ca_register.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/agent/kubernetes-agent/src/operations/fabric_ca_register.sh -------------------------------------------------------------------------------- /src/agent/kubernetes-agent/src/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/agent/kubernetes-agent/src/utils/__init__.py -------------------------------------------------------------------------------- /src/agent/kubernetes-agent/src/utils/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/agent/kubernetes-agent/src/utils/client.py -------------------------------------------------------------------------------- /src/agent/kubernetes-agent/src/utils/download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/agent/kubernetes-agent/src/utils/download.py -------------------------------------------------------------------------------- /src/agent/kubernetes-agent/src/utils/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/agent/kubernetes-agent/src/utils/env.py -------------------------------------------------------------------------------- /src/api-engine/api/__init__.py: -------------------------------------------------------------------------------- 1 | # 2 | # SPDX-License-Identifier: Apache-2.0 3 | # 4 | -------------------------------------------------------------------------------- /src/api-engine/api/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/api-engine/api/admin.py -------------------------------------------------------------------------------- /src/api-engine/api/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/api-engine/api/apps.py -------------------------------------------------------------------------------- /src/api-engine/api/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/api-engine/api/auth.py -------------------------------------------------------------------------------- /src/api-engine/api/common/__init__.py: -------------------------------------------------------------------------------- 1 | # 2 | # SPDX-License-Identifier: Apache-2.0 3 | # 4 | from .response import ok, err 5 | -------------------------------------------------------------------------------- /src/api-engine/api/common/enums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/api-engine/api/common/enums.py -------------------------------------------------------------------------------- /src/api-engine/api/common/response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/api-engine/api/common/response.py -------------------------------------------------------------------------------- /src/api-engine/api/common/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/api-engine/api/common/serializers.py -------------------------------------------------------------------------------- /src/api-engine/api/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/api-engine/api/config.py -------------------------------------------------------------------------------- /src/api-engine/api/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/api-engine/api/exceptions.py -------------------------------------------------------------------------------- /src/api-engine/api/lib/__init__.py: -------------------------------------------------------------------------------- 1 | # 2 | # SPDX-License-Identifier: Apache-2.0 3 | # 4 | -------------------------------------------------------------------------------- /src/api-engine/api/lib/agent/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/api-engine/api/lib/agent/__init__.py -------------------------------------------------------------------------------- /src/api-engine/api/lib/agent/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/api-engine/api/lib/agent/base.py -------------------------------------------------------------------------------- /src/api-engine/api/lib/agent/docker/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/api-engine/api/lib/agent/docker/__init__.py -------------------------------------------------------------------------------- /src/api-engine/api/lib/agent/docker/fabric/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/api-engine/api/lib/agent/docker/fabric/__init__.py -------------------------------------------------------------------------------- /src/api-engine/api/lib/agent/docker/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/api-engine/api/lib/agent/docker/handler.py -------------------------------------------------------------------------------- /src/api-engine/api/lib/agent/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/api-engine/api/lib/agent/handler.py -------------------------------------------------------------------------------- /src/api-engine/api/lib/agent/kubernetes/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/api-engine/api/lib/agent/kubernetes/__init__.py -------------------------------------------------------------------------------- /src/api-engine/api/lib/agent/kubernetes/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/api-engine/api/lib/agent/kubernetes/common.py -------------------------------------------------------------------------------- /src/api-engine/api/lib/agent/kubernetes/fabric/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/api-engine/api/lib/agent/kubernetes/fabric/__init__.py -------------------------------------------------------------------------------- /src/api-engine/api/lib/agent/network_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/api-engine/api/lib/agent/network_base.py -------------------------------------------------------------------------------- /src/api-engine/api/lib/configtxgen/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/api-engine/api/lib/configtxgen/__init__.py -------------------------------------------------------------------------------- /src/api-engine/api/lib/configtxgen/configtx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/api-engine/api/lib/configtxgen/configtx.py -------------------------------------------------------------------------------- /src/api-engine/api/lib/configtxgen/configtxgen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/api-engine/api/lib/configtxgen/configtxgen.py -------------------------------------------------------------------------------- /src/api-engine/api/lib/configtxlator/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/api-engine/api/lib/configtxlator/configtxlator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/api-engine/api/lib/configtxlator/configtxlator.py -------------------------------------------------------------------------------- /src/api-engine/api/lib/peer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/api-engine/api/lib/peer/chaincode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/api-engine/api/lib/peer/chaincode.py -------------------------------------------------------------------------------- /src/api-engine/api/lib/peer/channel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/api-engine/api/lib/peer/channel.py -------------------------------------------------------------------------------- /src/api-engine/api/lib/peer/command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/api-engine/api/lib/peer/command.py -------------------------------------------------------------------------------- /src/api-engine/api/lib/pki/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/api-engine/api/lib/pki/__init__.py -------------------------------------------------------------------------------- /src/api-engine/api/lib/pki/cryptogen/__init__.py: -------------------------------------------------------------------------------- 1 | # 2 | # SPDX-License-Identifier: Apache-2.0 3 | # 4 | -------------------------------------------------------------------------------- /src/api-engine/api/lib/pki/cryptogen/cryptocfg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/api-engine/api/lib/pki/cryptogen/cryptocfg.py -------------------------------------------------------------------------------- /src/api-engine/api/lib/pki/cryptogen/cryptogen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/api-engine/api/lib/pki/cryptogen/cryptogen.py -------------------------------------------------------------------------------- /src/api-engine/api/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/api-engine/api/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/api-engine/api/management/commands/create_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/api-engine/api/management/commands/create_user.py -------------------------------------------------------------------------------- /src/api-engine/api/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/api-engine/api/migrations/0001_initial.py -------------------------------------------------------------------------------- /src/api-engine/api/migrations/0002_userprofile_created_at_alter_agent_name_and_more.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/api-engine/api/migrations/0002_userprofile_created_at_alter_agent_name_and_more.py -------------------------------------------------------------------------------- /src/api-engine/api/migrations/0003_alter_agent_name_alter_agent_urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/api-engine/api/migrations/0003_alter_agent_name_alter_agent_urls.py -------------------------------------------------------------------------------- /src/api-engine/api/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | # 2 | # SPDX-License-Identifier: Apache-2.0 3 | # 4 | -------------------------------------------------------------------------------- /src/api-engine/api/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/api-engine/api/models.py -------------------------------------------------------------------------------- /src/api-engine/api/routes/__init__.py: -------------------------------------------------------------------------------- 1 | # 2 | # SPDX-License-Identifier: Apache-2.0 3 | # 4 | -------------------------------------------------------------------------------- /src/api-engine/api/routes/agent/__init__.py: -------------------------------------------------------------------------------- 1 | # 2 | # SPDX-License-Identifier: Apache-2.0 3 | # 4 | -------------------------------------------------------------------------------- /src/api-engine/api/routes/agent/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/api-engine/api/routes/agent/serializers.py -------------------------------------------------------------------------------- /src/api-engine/api/routes/agent/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/api-engine/api/routes/agent/views.py -------------------------------------------------------------------------------- /src/api-engine/api/routes/chaincode/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/api-engine/api/routes/chaincode/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/api-engine/api/routes/chaincode/serializers.py -------------------------------------------------------------------------------- /src/api-engine/api/routes/chaincode/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/api-engine/api/routes/chaincode/views.py -------------------------------------------------------------------------------- /src/api-engine/api/routes/channel/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/api-engine/api/routes/channel/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/api-engine/api/routes/channel/serializers.py -------------------------------------------------------------------------------- /src/api-engine/api/routes/channel/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/api-engine/api/routes/channel/views.py -------------------------------------------------------------------------------- /src/api-engine/api/routes/cluster/__init__.py: -------------------------------------------------------------------------------- 1 | # 2 | # SPDX-License-Identifier: Apache-2.0 3 | # 4 | -------------------------------------------------------------------------------- /src/api-engine/api/routes/cluster/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/api-engine/api/routes/cluster/serializers.py -------------------------------------------------------------------------------- /src/api-engine/api/routes/cluster/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/api-engine/api/routes/cluster/views.py -------------------------------------------------------------------------------- /src/api-engine/api/routes/file/__init__.py: -------------------------------------------------------------------------------- 1 | # 2 | -------------------------------------------------------------------------------- /src/api-engine/api/routes/file/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/api-engine/api/routes/file/serializers.py -------------------------------------------------------------------------------- /src/api-engine/api/routes/file/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/api-engine/api/routes/file/views.py -------------------------------------------------------------------------------- /src/api-engine/api/routes/general/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/api-engine/api/routes/general/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/api-engine/api/routes/general/serializers.py -------------------------------------------------------------------------------- /src/api-engine/api/routes/general/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/api-engine/api/routes/general/views.py -------------------------------------------------------------------------------- /src/api-engine/api/routes/network/__init__.py: -------------------------------------------------------------------------------- 1 | # 2 | # SPDX-License-Identifier: Apache-2.0 3 | # 4 | -------------------------------------------------------------------------------- /src/api-engine/api/routes/network/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/api-engine/api/routes/network/serializers.py -------------------------------------------------------------------------------- /src/api-engine/api/routes/network/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/api-engine/api/routes/network/views.py -------------------------------------------------------------------------------- /src/api-engine/api/routes/node/__init__.py: -------------------------------------------------------------------------------- 1 | # 2 | # SPDX-License-Identifier: Apache-2.0 3 | # 4 | -------------------------------------------------------------------------------- /src/api-engine/api/routes/node/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/api-engine/api/routes/node/serializers.py -------------------------------------------------------------------------------- /src/api-engine/api/routes/node/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/api-engine/api/routes/node/views.py -------------------------------------------------------------------------------- /src/api-engine/api/routes/organization/__init__.py: -------------------------------------------------------------------------------- 1 | # 2 | # SPDX-License-Identifier: Apache-2.0 3 | # 4 | -------------------------------------------------------------------------------- /src/api-engine/api/routes/organization/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/api-engine/api/routes/organization/serializers.py -------------------------------------------------------------------------------- /src/api-engine/api/routes/organization/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/api-engine/api/routes/organization/views.py -------------------------------------------------------------------------------- /src/api-engine/api/routes/user/__init__.py: -------------------------------------------------------------------------------- 1 | # 2 | # SPDX-License-Identifier: Apache-2.0 3 | # 4 | -------------------------------------------------------------------------------- /src/api-engine/api/routes/user/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/api-engine/api/routes/user/serializers.py -------------------------------------------------------------------------------- /src/api-engine/api/routes/user/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/api-engine/api/routes/user/views.py -------------------------------------------------------------------------------- /src/api-engine/api/tasks/__init__.py: -------------------------------------------------------------------------------- 1 | from .agent import operate_node 2 | -------------------------------------------------------------------------------- /src/api-engine/api/tasks/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/api-engine/api/tasks/agent.py -------------------------------------------------------------------------------- /src/api-engine/api/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/api-engine/api/tests.py -------------------------------------------------------------------------------- /src/api-engine/api/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/api-engine/api/utils/__init__.py -------------------------------------------------------------------------------- /src/api-engine/api/utils/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/api-engine/api/utils/common.py -------------------------------------------------------------------------------- /src/api-engine/api/utils/jwt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/api-engine/api/utils/jwt.py -------------------------------------------------------------------------------- /src/api-engine/api/utils/node_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/api-engine/api/utils/node_config.py -------------------------------------------------------------------------------- /src/api-engine/api/utils/port_picker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/api-engine/api/utils/port_picker.py -------------------------------------------------------------------------------- /src/api-engine/api/validators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/api-engine/api/validators.py -------------------------------------------------------------------------------- /src/api-engine/api/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/api-engine/api/views.py -------------------------------------------------------------------------------- /src/api-engine/api_engine/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/api-engine/api_engine/__init__.py -------------------------------------------------------------------------------- /src/api-engine/api_engine/celery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/api-engine/api_engine/celery.py -------------------------------------------------------------------------------- /src/api-engine/api_engine/settings.py.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/api-engine/api_engine/settings.py.example -------------------------------------------------------------------------------- /src/api-engine/api_engine/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/api-engine/api_engine/urls.py -------------------------------------------------------------------------------- /src/api-engine/api_engine/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/api-engine/api_engine/wsgi.py -------------------------------------------------------------------------------- /src/api-engine/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/api-engine/manage.py -------------------------------------------------------------------------------- /src/api-engine/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/api-engine/requirements.txt -------------------------------------------------------------------------------- /src/api-engine/tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/api-engine/tox.ini -------------------------------------------------------------------------------- /src/dashboard/.eslintignore: -------------------------------------------------------------------------------- 1 | /lambda/ 2 | /scripts 3 | /config -------------------------------------------------------------------------------- /src/dashboard/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/.eslintrc.js -------------------------------------------------------------------------------- /src/dashboard/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/.prettierignore -------------------------------------------------------------------------------- /src/dashboard/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/.prettierrc -------------------------------------------------------------------------------- /src/dashboard/.stylelintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/.stylelintrc.json -------------------------------------------------------------------------------- /src/dashboard/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/Makefile -------------------------------------------------------------------------------- /src/dashboard/config/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/config/config.js -------------------------------------------------------------------------------- /src/dashboard/config/plugin.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/config/plugin.config.js -------------------------------------------------------------------------------- /src/dashboard/config/router.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/config/router.config.js -------------------------------------------------------------------------------- /src/dashboard/config/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/config/theme.js -------------------------------------------------------------------------------- /src/dashboard/dist/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/dist/favicon.png -------------------------------------------------------------------------------- /src/dashboard/dist/icons/icon-128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/dist/icons/icon-128x128.png -------------------------------------------------------------------------------- /src/dashboard/dist/icons/icon-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/dist/icons/icon-192x192.png -------------------------------------------------------------------------------- /src/dashboard/dist/icons/icon-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/dist/icons/icon-512x512.png -------------------------------------------------------------------------------- /src/dashboard/lambda/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/lambda/api.js -------------------------------------------------------------------------------- /src/dashboard/lambda/mock/matchMock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/lambda/mock/matchMock.js -------------------------------------------------------------------------------- /src/dashboard/mock/agent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/mock/agent.js -------------------------------------------------------------------------------- /src/dashboard/mock/channel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/mock/channel.js -------------------------------------------------------------------------------- /src/dashboard/mock/network.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/mock/network.js -------------------------------------------------------------------------------- /src/dashboard/mock/node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/mock/node.js -------------------------------------------------------------------------------- /src/dashboard/mock/organization.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/mock/organization.js -------------------------------------------------------------------------------- /src/dashboard/mock/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/mock/user.js -------------------------------------------------------------------------------- /src/dashboard/netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/netlify.toml -------------------------------------------------------------------------------- /src/dashboard/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/package.json -------------------------------------------------------------------------------- /src/dashboard/public/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/public/avatar.png -------------------------------------------------------------------------------- /src/dashboard/public/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/public/favicon.png -------------------------------------------------------------------------------- /src/dashboard/public/icons/icon-128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/public/icons/icon-128x128.png -------------------------------------------------------------------------------- /src/dashboard/public/icons/icon-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/public/icons/icon-192x192.png -------------------------------------------------------------------------------- /src/dashboard/public/icons/icon-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/public/icons/icon-512x512.png -------------------------------------------------------------------------------- /src/dashboard/scripts/generateMock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/scripts/generateMock.js -------------------------------------------------------------------------------- /src/dashboard/scripts/getPrettierFiles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/scripts/getPrettierFiles.js -------------------------------------------------------------------------------- /src/dashboard/scripts/lint-prettier.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/scripts/lint-prettier.js -------------------------------------------------------------------------------- /src/dashboard/scripts/prettier.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/scripts/prettier.js -------------------------------------------------------------------------------- /src/dashboard/src/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/app.js -------------------------------------------------------------------------------- /src/dashboard/src/assets/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/assets/logo.svg -------------------------------------------------------------------------------- /src/dashboard/src/components/Authorized/Authorized.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/components/Authorized/Authorized.js -------------------------------------------------------------------------------- /src/dashboard/src/components/Authorized/AuthorizedRoute.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/components/Authorized/AuthorizedRoute.js -------------------------------------------------------------------------------- /src/dashboard/src/components/Authorized/CheckPermissions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/components/Authorized/CheckPermissions.js -------------------------------------------------------------------------------- /src/dashboard/src/components/Authorized/CheckPermissions.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/components/Authorized/CheckPermissions.test.js -------------------------------------------------------------------------------- /src/dashboard/src/components/Authorized/PromiseRender.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/components/Authorized/PromiseRender.js -------------------------------------------------------------------------------- /src/dashboard/src/components/Authorized/Secured.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/components/Authorized/Secured.js -------------------------------------------------------------------------------- /src/dashboard/src/components/Authorized/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/components/Authorized/index.js -------------------------------------------------------------------------------- /src/dashboard/src/components/Authorized/renderAuthorize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/components/Authorized/renderAuthorize.js -------------------------------------------------------------------------------- /src/dashboard/src/components/Exception/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/components/Exception/index.js -------------------------------------------------------------------------------- /src/dashboard/src/components/Exception/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/components/Exception/index.less -------------------------------------------------------------------------------- /src/dashboard/src/components/Exception/typeConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/components/Exception/typeConfig.js -------------------------------------------------------------------------------- /src/dashboard/src/components/FooterToolbar/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/components/FooterToolbar/index.js -------------------------------------------------------------------------------- /src/dashboard/src/components/FooterToolbar/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/components/FooterToolbar/index.less -------------------------------------------------------------------------------- /src/dashboard/src/components/GlobalFooter/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/components/GlobalFooter/index.js -------------------------------------------------------------------------------- /src/dashboard/src/components/GlobalFooter/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/components/GlobalFooter/index.less -------------------------------------------------------------------------------- /src/dashboard/src/components/GlobalHeader/RightContent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/components/GlobalHeader/RightContent.js -------------------------------------------------------------------------------- /src/dashboard/src/components/GlobalHeader/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/components/GlobalHeader/index.js -------------------------------------------------------------------------------- /src/dashboard/src/components/GlobalHeader/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/components/GlobalHeader/index.less -------------------------------------------------------------------------------- /src/dashboard/src/components/HeaderDropdown/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/components/HeaderDropdown/index.js -------------------------------------------------------------------------------- /src/dashboard/src/components/HeaderDropdown/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/components/HeaderDropdown/index.less -------------------------------------------------------------------------------- /src/dashboard/src/components/IconFont/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/components/IconFont/index.js -------------------------------------------------------------------------------- /src/dashboard/src/components/Login/LoginItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/components/Login/LoginItem.js -------------------------------------------------------------------------------- /src/dashboard/src/components/Login/LoginSubmit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/components/Login/LoginSubmit.js -------------------------------------------------------------------------------- /src/dashboard/src/components/Login/LoginTab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/components/Login/LoginTab.js -------------------------------------------------------------------------------- /src/dashboard/src/components/Login/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/components/Login/index.js -------------------------------------------------------------------------------- /src/dashboard/src/components/Login/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/components/Login/index.less -------------------------------------------------------------------------------- /src/dashboard/src/components/Login/loginContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/components/Login/loginContext.js -------------------------------------------------------------------------------- /src/dashboard/src/components/Login/map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/components/Login/map.js -------------------------------------------------------------------------------- /src/dashboard/src/components/PageHeaderWrapper/GridContent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/components/PageHeaderWrapper/GridContent.js -------------------------------------------------------------------------------- /src/dashboard/src/components/PageHeaderWrapper/GridContent.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/components/PageHeaderWrapper/GridContent.less -------------------------------------------------------------------------------- /src/dashboard/src/components/PageHeaderWrapper/breadcrumb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/components/PageHeaderWrapper/breadcrumb.js -------------------------------------------------------------------------------- /src/dashboard/src/components/PageHeaderWrapper/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/components/PageHeaderWrapper/index.js -------------------------------------------------------------------------------- /src/dashboard/src/components/PageHeaderWrapper/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/components/PageHeaderWrapper/index.less -------------------------------------------------------------------------------- /src/dashboard/src/components/PageLoading/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/components/PageLoading/index.js -------------------------------------------------------------------------------- /src/dashboard/src/components/SelectLang/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/components/SelectLang/index.js -------------------------------------------------------------------------------- /src/dashboard/src/components/SelectLang/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/components/SelectLang/index.less -------------------------------------------------------------------------------- /src/dashboard/src/components/SettingDrawer/BlockCheckbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/components/SettingDrawer/BlockCheckbox.js -------------------------------------------------------------------------------- /src/dashboard/src/components/SettingDrawer/ThemeColor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/components/SettingDrawer/ThemeColor.js -------------------------------------------------------------------------------- /src/dashboard/src/components/SettingDrawer/ThemeColor.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/components/SettingDrawer/ThemeColor.less -------------------------------------------------------------------------------- /src/dashboard/src/components/SettingDrawer/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/components/SettingDrawer/index.js -------------------------------------------------------------------------------- /src/dashboard/src/components/SettingDrawer/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/components/SettingDrawer/index.less -------------------------------------------------------------------------------- /src/dashboard/src/components/SiderMenu/BaseMenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/components/SiderMenu/BaseMenu.js -------------------------------------------------------------------------------- /src/dashboard/src/components/SiderMenu/SiderMenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/components/SiderMenu/SiderMenu.js -------------------------------------------------------------------------------- /src/dashboard/src/components/SiderMenu/SiderMenu.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/components/SiderMenu/SiderMenu.test.js -------------------------------------------------------------------------------- /src/dashboard/src/components/SiderMenu/SiderMenuUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/components/SiderMenu/SiderMenuUtils.js -------------------------------------------------------------------------------- /src/dashboard/src/components/SiderMenu/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/components/SiderMenu/index.js -------------------------------------------------------------------------------- /src/dashboard/src/components/SiderMenu/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/components/SiderMenu/index.less -------------------------------------------------------------------------------- /src/dashboard/src/components/StandardTable/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/components/StandardTable/index.js -------------------------------------------------------------------------------- /src/dashboard/src/components/StandardTable/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/components/StandardTable/index.less -------------------------------------------------------------------------------- /src/dashboard/src/components/TopNavHeader/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/components/TopNavHeader/index.js -------------------------------------------------------------------------------- /src/dashboard/src/components/TopNavHeader/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/components/TopNavHeader/index.less -------------------------------------------------------------------------------- /src/dashboard/src/components/_utils/pathTools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/components/_utils/pathTools.js -------------------------------------------------------------------------------- /src/dashboard/src/components/_utils/pathTools.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/components/_utils/pathTools.test.js -------------------------------------------------------------------------------- /src/dashboard/src/defaultSettings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/defaultSettings.js -------------------------------------------------------------------------------- /src/dashboard/src/e2e/baseLayout.e2e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/e2e/baseLayout.e2e.js -------------------------------------------------------------------------------- /src/dashboard/src/e2e/home.e2e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/e2e/home.e2e.js -------------------------------------------------------------------------------- /src/dashboard/src/e2e/login.e2e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/e2e/login.e2e.js -------------------------------------------------------------------------------- /src/dashboard/src/e2e/topMenu.e2e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/e2e/topMenu.e2e.js -------------------------------------------------------------------------------- /src/dashboard/src/e2e/userLayout.e2e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/e2e/userLayout.e2e.js -------------------------------------------------------------------------------- /src/dashboard/src/global.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/global.js -------------------------------------------------------------------------------- /src/dashboard/src/global.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/global.less -------------------------------------------------------------------------------- /src/dashboard/src/layouts/BasicLayout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/layouts/BasicLayout.js -------------------------------------------------------------------------------- /src/dashboard/src/layouts/BasicLayout.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/layouts/BasicLayout.less -------------------------------------------------------------------------------- /src/dashboard/src/layouts/BlankLayout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/layouts/BlankLayout.js -------------------------------------------------------------------------------- /src/dashboard/src/layouts/Footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/layouts/Footer.js -------------------------------------------------------------------------------- /src/dashboard/src/layouts/Header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/layouts/Header.js -------------------------------------------------------------------------------- /src/dashboard/src/layouts/Header.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/layouts/Header.less -------------------------------------------------------------------------------- /src/dashboard/src/layouts/MenuContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/layouts/MenuContext.js -------------------------------------------------------------------------------- /src/dashboard/src/layouts/SecurityLayout.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/layouts/SecurityLayout.jsx -------------------------------------------------------------------------------- /src/dashboard/src/layouts/UserLayout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/layouts/UserLayout.js -------------------------------------------------------------------------------- /src/dashboard/src/layouts/UserLayout.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/layouts/UserLayout.less -------------------------------------------------------------------------------- /src/dashboard/src/locales/en-US.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/locales/en-US.js -------------------------------------------------------------------------------- /src/dashboard/src/locales/en-US/Agent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/locales/en-US/Agent.js -------------------------------------------------------------------------------- /src/dashboard/src/locales/en-US/Chaincode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/locales/en-US/Chaincode.js -------------------------------------------------------------------------------- /src/dashboard/src/locales/en-US/Channel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/locales/en-US/Channel.js -------------------------------------------------------------------------------- /src/dashboard/src/locales/en-US/Network.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/locales/en-US/Network.js -------------------------------------------------------------------------------- /src/dashboard/src/locales/en-US/Node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/locales/en-US/Node.js -------------------------------------------------------------------------------- /src/dashboard/src/locales/en-US/Organization.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/locales/en-US/Organization.js -------------------------------------------------------------------------------- /src/dashboard/src/locales/en-US/component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/locales/en-US/component.js -------------------------------------------------------------------------------- /src/dashboard/src/locales/en-US/exception.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/locales/en-US/exception.js -------------------------------------------------------------------------------- /src/dashboard/src/locales/en-US/fabric/ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/locales/en-US/fabric/ca.js -------------------------------------------------------------------------------- /src/dashboard/src/locales/en-US/form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/locales/en-US/form.js -------------------------------------------------------------------------------- /src/dashboard/src/locales/en-US/globalHeader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/locales/en-US/globalHeader.js -------------------------------------------------------------------------------- /src/dashboard/src/locales/en-US/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/locales/en-US/login.js -------------------------------------------------------------------------------- /src/dashboard/src/locales/en-US/menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/locales/en-US/menu.js -------------------------------------------------------------------------------- /src/dashboard/src/locales/en-US/operatorUser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/locales/en-US/operatorUser.js -------------------------------------------------------------------------------- /src/dashboard/src/locales/en-US/pwa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/locales/en-US/pwa.js -------------------------------------------------------------------------------- /src/dashboard/src/locales/zh-CN.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/locales/zh-CN.js -------------------------------------------------------------------------------- /src/dashboard/src/locales/zh-CN/Agent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/locales/zh-CN/Agent.js -------------------------------------------------------------------------------- /src/dashboard/src/locales/zh-CN/Chaincode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/locales/zh-CN/Chaincode.js -------------------------------------------------------------------------------- /src/dashboard/src/locales/zh-CN/Channel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/locales/zh-CN/Channel.js -------------------------------------------------------------------------------- /src/dashboard/src/locales/zh-CN/Network.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/locales/zh-CN/Network.js -------------------------------------------------------------------------------- /src/dashboard/src/locales/zh-CN/Node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/locales/zh-CN/Node.js -------------------------------------------------------------------------------- /src/dashboard/src/locales/zh-CN/Organization.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/locales/zh-CN/Organization.js -------------------------------------------------------------------------------- /src/dashboard/src/locales/zh-CN/component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/locales/zh-CN/component.js -------------------------------------------------------------------------------- /src/dashboard/src/locales/zh-CN/exception.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/locales/zh-CN/exception.js -------------------------------------------------------------------------------- /src/dashboard/src/locales/zh-CN/fabric/ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/locales/zh-CN/fabric/ca.js -------------------------------------------------------------------------------- /src/dashboard/src/locales/zh-CN/form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/locales/zh-CN/form.js -------------------------------------------------------------------------------- /src/dashboard/src/locales/zh-CN/globalHeader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/locales/zh-CN/globalHeader.js -------------------------------------------------------------------------------- /src/dashboard/src/locales/zh-CN/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/locales/zh-CN/login.js -------------------------------------------------------------------------------- /src/dashboard/src/locales/zh-CN/menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/locales/zh-CN/menu.js -------------------------------------------------------------------------------- /src/dashboard/src/locales/zh-CN/operatorUser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/locales/zh-CN/operatorUser.js -------------------------------------------------------------------------------- /src/dashboard/src/locales/zh-CN/pwa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/locales/zh-CN/pwa.js -------------------------------------------------------------------------------- /src/dashboard/src/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/manifest.json -------------------------------------------------------------------------------- /src/dashboard/src/models/agent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/models/agent.js -------------------------------------------------------------------------------- /src/dashboard/src/models/chaincode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/models/chaincode.js -------------------------------------------------------------------------------- /src/dashboard/src/models/channel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/models/channel.js -------------------------------------------------------------------------------- /src/dashboard/src/models/global.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/models/global.js -------------------------------------------------------------------------------- /src/dashboard/src/models/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/models/login.js -------------------------------------------------------------------------------- /src/dashboard/src/models/menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/models/menu.js -------------------------------------------------------------------------------- /src/dashboard/src/models/network.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/models/network.js -------------------------------------------------------------------------------- /src/dashboard/src/models/node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/models/node.js -------------------------------------------------------------------------------- /src/dashboard/src/models/organization.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/models/organization.js -------------------------------------------------------------------------------- /src/dashboard/src/models/setting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/models/setting.js -------------------------------------------------------------------------------- /src/dashboard/src/models/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/models/user.js -------------------------------------------------------------------------------- /src/dashboard/src/pages/404.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/pages/404.js -------------------------------------------------------------------------------- /src/dashboard/src/pages/Agent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/pages/Agent.js -------------------------------------------------------------------------------- /src/dashboard/src/pages/Agent/Agent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/pages/Agent/Agent.js -------------------------------------------------------------------------------- /src/dashboard/src/pages/Agent/newAgent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/pages/Agent/newAgent.js -------------------------------------------------------------------------------- /src/dashboard/src/pages/Authorized.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/pages/Authorized.js -------------------------------------------------------------------------------- /src/dashboard/src/pages/ChainCode/ChainCode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/pages/ChainCode/ChainCode.js -------------------------------------------------------------------------------- /src/dashboard/src/pages/ChainCode/forms/ApproveForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/pages/ChainCode/forms/ApproveForm.js -------------------------------------------------------------------------------- /src/dashboard/src/pages/ChainCode/forms/CommitForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/pages/ChainCode/forms/CommitForm.js -------------------------------------------------------------------------------- /src/dashboard/src/pages/ChainCode/forms/InstallForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/pages/ChainCode/forms/InstallForm.js -------------------------------------------------------------------------------- /src/dashboard/src/pages/ChainCode/forms/UploadForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/pages/ChainCode/forms/UploadForm.js -------------------------------------------------------------------------------- /src/dashboard/src/pages/ChainCode/styles.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/pages/ChainCode/styles.less -------------------------------------------------------------------------------- /src/dashboard/src/pages/Channel/Channel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/pages/Channel/Channel.js -------------------------------------------------------------------------------- /src/dashboard/src/pages/Channel/styles.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/pages/Channel/styles.less -------------------------------------------------------------------------------- /src/dashboard/src/pages/Exception/403.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/pages/Exception/403.js -------------------------------------------------------------------------------- /src/dashboard/src/pages/Exception/404.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/pages/Exception/404.js -------------------------------------------------------------------------------- /src/dashboard/src/pages/Exception/500.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/pages/Exception/500.js -------------------------------------------------------------------------------- /src/dashboard/src/pages/Exception/TriggerException.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/pages/Exception/TriggerException.js -------------------------------------------------------------------------------- /src/dashboard/src/pages/Exception/models/error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/pages/Exception/models/error.js -------------------------------------------------------------------------------- /src/dashboard/src/pages/Exception/style.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/pages/Exception/style.less -------------------------------------------------------------------------------- /src/dashboard/src/pages/Network/Network.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/pages/Network/Network.js -------------------------------------------------------------------------------- /src/dashboard/src/pages/Network/newNetwork.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/pages/Network/newNetwork.js -------------------------------------------------------------------------------- /src/dashboard/src/pages/Network/styles.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/pages/Network/styles.less -------------------------------------------------------------------------------- /src/dashboard/src/pages/Node/New/Fabric/ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/pages/Node/New/Fabric/ca.js -------------------------------------------------------------------------------- /src/dashboard/src/pages/Node/New/Fabric/orderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/pages/Node/New/Fabric/orderer.js -------------------------------------------------------------------------------- /src/dashboard/src/pages/Node/New/Fabric/peer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/pages/Node/New/Fabric/peer.js -------------------------------------------------------------------------------- /src/dashboard/src/pages/Node/New/basicInfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/pages/Node/New/basicInfo.js -------------------------------------------------------------------------------- /src/dashboard/src/pages/Node/New/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/pages/Node/New/index.js -------------------------------------------------------------------------------- /src/dashboard/src/pages/Node/New/nodeInfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/pages/Node/New/nodeInfo.js -------------------------------------------------------------------------------- /src/dashboard/src/pages/Node/New/styles.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/pages/Node/New/styles.less -------------------------------------------------------------------------------- /src/dashboard/src/pages/Node/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/pages/Node/index.js -------------------------------------------------------------------------------- /src/dashboard/src/pages/Organization/Organization.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/pages/Organization/Organization.js -------------------------------------------------------------------------------- /src/dashboard/src/pages/Overview/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/pages/Overview/index.js -------------------------------------------------------------------------------- /src/dashboard/src/pages/User/Login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/pages/User/Login.js -------------------------------------------------------------------------------- /src/dashboard/src/pages/User/Login.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/pages/User/Login.less -------------------------------------------------------------------------------- /src/dashboard/src/pages/UserManagement/UserManagement.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/pages/UserManagement/UserManagement.js -------------------------------------------------------------------------------- /src/dashboard/src/pages/document.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/pages/document.ejs -------------------------------------------------------------------------------- /src/dashboard/src/pages/styles.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/pages/styles.less -------------------------------------------------------------------------------- /src/dashboard/src/service-worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/service-worker.js -------------------------------------------------------------------------------- /src/dashboard/src/services/agent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/services/agent.js -------------------------------------------------------------------------------- /src/dashboard/src/services/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/services/api.js -------------------------------------------------------------------------------- /src/dashboard/src/services/chaincode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/services/chaincode.js -------------------------------------------------------------------------------- /src/dashboard/src/services/channel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/services/channel.js -------------------------------------------------------------------------------- /src/dashboard/src/services/error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/services/error.js -------------------------------------------------------------------------------- /src/dashboard/src/services/network.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/services/network.js -------------------------------------------------------------------------------- /src/dashboard/src/services/node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/services/node.js -------------------------------------------------------------------------------- /src/dashboard/src/services/organization.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/services/organization.js -------------------------------------------------------------------------------- /src/dashboard/src/services/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/services/user.js -------------------------------------------------------------------------------- /src/dashboard/src/utils/Authorized.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/utils/Authorized.js -------------------------------------------------------------------------------- /src/dashboard/src/utils/authority.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/utils/authority.js -------------------------------------------------------------------------------- /src/dashboard/src/utils/authority.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/utils/authority.test.js -------------------------------------------------------------------------------- /src/dashboard/src/utils/getPageTitle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/utils/getPageTitle.js -------------------------------------------------------------------------------- /src/dashboard/src/utils/networks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/utils/networks.js -------------------------------------------------------------------------------- /src/dashboard/src/utils/request.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/utils/request.js -------------------------------------------------------------------------------- /src/dashboard/src/utils/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/utils/utils.js -------------------------------------------------------------------------------- /src/dashboard/src/utils/utils.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/utils/utils.less -------------------------------------------------------------------------------- /src/dashboard/src/utils/utils.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/src/utils/utils.test.js -------------------------------------------------------------------------------- /src/dashboard/tests/run-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/tests/run-tests.js -------------------------------------------------------------------------------- /src/dashboard/tests/setupTests.js: -------------------------------------------------------------------------------- 1 | import 'jsdom-global/register'; 2 | -------------------------------------------------------------------------------- /src/dashboard/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/src/dashboard/yarn.lock -------------------------------------------------------------------------------- /template/node/core.yaml.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/template/node/core.yaml.bak -------------------------------------------------------------------------------- /template/node/orderer.yaml.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/template/node/orderer.yaml.bak -------------------------------------------------------------------------------- /tests/dashboard/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/tests/dashboard/docker-compose.yml -------------------------------------------------------------------------------- /tests/postman/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/tests/postman/README.md -------------------------------------------------------------------------------- /tests/postman/basic.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/tests/postman/basic.tar.gz -------------------------------------------------------------------------------- /tests/postman/collections/Cello Engine CI Test.postman_collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/tests/postman/collections/Cello Engine CI Test.postman_collection.json -------------------------------------------------------------------------------- /tests/postman/collections/Hyperledger Cello Api Engine.postman_collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/tests/postman/collections/Hyperledger Cello Api Engine.postman_collection.json -------------------------------------------------------------------------------- /tests/postman/docker-compose.dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/tests/postman/docker-compose.dev.yml -------------------------------------------------------------------------------- /thirdparty/helm/cello-master/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/thirdparty/helm/cello-master/Chart.yaml -------------------------------------------------------------------------------- /thirdparty/helm/cello-master/requirements.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/thirdparty/helm/cello-master/requirements.lock -------------------------------------------------------------------------------- /thirdparty/helm/cello-master/requirements.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/thirdparty/helm/cello-master/requirements.yaml -------------------------------------------------------------------------------- /thirdparty/helm/cello-master/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/thirdparty/helm/cello-master/templates/NOTES.txt -------------------------------------------------------------------------------- /thirdparty/helm/cello-master/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/thirdparty/helm/cello-master/templates/_helpers.tpl -------------------------------------------------------------------------------- /thirdparty/helm/cello-master/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/thirdparty/helm/cello-master/templates/deployment.yaml -------------------------------------------------------------------------------- /thirdparty/helm/cello-master/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/thirdparty/helm/cello-master/templates/ingress.yaml -------------------------------------------------------------------------------- /thirdparty/helm/cello-master/templates/minio-pv.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/thirdparty/helm/cello-master/templates/minio-pv.yaml -------------------------------------------------------------------------------- /thirdparty/helm/cello-master/templates/mongo-pv.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/thirdparty/helm/cello-master/templates/mongo-pv.yaml -------------------------------------------------------------------------------- /thirdparty/helm/cello-master/templates/mongo-pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/thirdparty/helm/cello-master/templates/mongo-pvc.yaml -------------------------------------------------------------------------------- /thirdparty/helm/cello-master/templates/nfs-pv.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/thirdparty/helm/cello-master/templates/nfs-pv.yaml -------------------------------------------------------------------------------- /thirdparty/helm/cello-master/templates/nfs-pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/thirdparty/helm/cello-master/templates/nfs-pvc.yaml -------------------------------------------------------------------------------- /thirdparty/helm/cello-master/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/thirdparty/helm/cello-master/templates/service.yaml -------------------------------------------------------------------------------- /thirdparty/helm/cello-master/templates/user-dashboard-pv.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/thirdparty/helm/cello-master/templates/user-dashboard-pv.yaml -------------------------------------------------------------------------------- /thirdparty/helm/cello-master/templates/user-dashboard-pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/thirdparty/helm/cello-master/templates/user-dashboard-pvc.yaml -------------------------------------------------------------------------------- /thirdparty/helm/cello-master/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/thirdparty/helm/cello-master/values.yaml -------------------------------------------------------------------------------- /thirdparty/helm/fabric-chart/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/thirdparty/helm/fabric-chart/Chart.yaml -------------------------------------------------------------------------------- /thirdparty/helm/fabric-chart/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/thirdparty/helm/fabric-chart/README.md -------------------------------------------------------------------------------- /thirdparty/helm/fabric-chart/templates/ca/_ca_dpy.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/thirdparty/helm/fabric-chart/templates/ca/_ca_dpy.tpl -------------------------------------------------------------------------------- /thirdparty/helm/fabric-chart/templates/ca/_ca_svc.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/thirdparty/helm/fabric-chart/templates/ca/_ca_svc.tpl -------------------------------------------------------------------------------- /thirdparty/helm/fabric-chart/templates/cli/_cli_dpy.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/thirdparty/helm/fabric-chart/templates/cli/_cli_dpy.tpl -------------------------------------------------------------------------------- /thirdparty/helm/fabric-chart/templates/common/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/thirdparty/helm/fabric-chart/templates/common/_helpers.tpl -------------------------------------------------------------------------------- /thirdparty/helm/fabric-chart/templates/common/_ingress.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/thirdparty/helm/fabric-chart/templates/common/_ingress.tpl -------------------------------------------------------------------------------- /thirdparty/helm/fabric-chart/templates/common/_namespace.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/thirdparty/helm/fabric-chart/templates/common/_namespace.tpl -------------------------------------------------------------------------------- /thirdparty/helm/fabric-chart/templates/common/_pv.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/thirdparty/helm/fabric-chart/templates/common/_pv.tpl -------------------------------------------------------------------------------- /thirdparty/helm/fabric-chart/templates/common/_pvc.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/thirdparty/helm/fabric-chart/templates/common/_pvc.tpl -------------------------------------------------------------------------------- /thirdparty/helm/fabric-chart/templates/kafka/_kafka_dpy.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/thirdparty/helm/fabric-chart/templates/kafka/_kafka_dpy.tpl -------------------------------------------------------------------------------- /thirdparty/helm/fabric-chart/templates/kafka/_kafka_svc.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/thirdparty/helm/fabric-chart/templates/kafka/_kafka_svc.tpl -------------------------------------------------------------------------------- /thirdparty/helm/fabric-chart/templates/orderer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/thirdparty/helm/fabric-chart/templates/orderer.yaml -------------------------------------------------------------------------------- /thirdparty/helm/fabric-chart/templates/orderer/_orderer_default_dpy.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/thirdparty/helm/fabric-chart/templates/orderer/_orderer_default_dpy.tpl -------------------------------------------------------------------------------- /thirdparty/helm/fabric-chart/templates/orderer/_orderer_kafka_dpy.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/thirdparty/helm/fabric-chart/templates/orderer/_orderer_kafka_dpy.tpl -------------------------------------------------------------------------------- /thirdparty/helm/fabric-chart/templates/orderer/_orderer_svc.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/thirdparty/helm/fabric-chart/templates/orderer/_orderer_svc.tpl -------------------------------------------------------------------------------- /thirdparty/helm/fabric-chart/templates/peer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/thirdparty/helm/fabric-chart/templates/peer.yaml -------------------------------------------------------------------------------- /thirdparty/helm/fabric-chart/templates/peer/_peer_dpy.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/thirdparty/helm/fabric-chart/templates/peer/_peer_dpy.tpl -------------------------------------------------------------------------------- /thirdparty/helm/fabric-chart/templates/peer/_peer_svc.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/thirdparty/helm/fabric-chart/templates/peer/_peer_svc.tpl -------------------------------------------------------------------------------- /thirdparty/helm/fabric-chart/templates/zookeeper/_zookeeper_dpy.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/thirdparty/helm/fabric-chart/templates/zookeeper/_zookeeper_dpy.tpl -------------------------------------------------------------------------------- /thirdparty/helm/fabric-chart/templates/zookeeper/_zookeeper_svc.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/thirdparty/helm/fabric-chart/templates/zookeeper/_zookeeper_svc.tpl -------------------------------------------------------------------------------- /thirdparty/helm/fabric-chart/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-cello/cello/HEAD/thirdparty/helm/fabric-chart/values.yaml --------------------------------------------------------------------------------