Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
45 commits
Select commit Hold shift + click to select a range
111592e
Finish channel creation
dodo920306 Sep 27, 2025
284fc8a
Remove old channel codes
dodo920306 Sep 27, 2025
ce6ba86
Finish list chaincodes
dodo920306 Sep 27, 2025
407eb5c
Finish upload chaincodes
dodo920306 Sep 27, 2025
be87027
Finish chaincode creation
dodo920306 Sep 28, 2025
715ed1f
Finish chaincode commit
dodo920306 Sep 29, 2025
9222ed8
Remove redundant old API files
dodo920306 Sep 29, 2025
6b45ce1
Remove redundant old API files
dodo920306 Sep 29, 2025
c4fab83
Make migrations
dodo920306 Sep 29, 2025
1577c07
Move Docker file into api engine
dodo920306 Sep 29, 2025
21e575f
Simplify entrypoint
dodo920306 Sep 29, 2025
f9f1b5f
Remove Fabric Node templates
dodo920306 Sep 29, 2025
d4d5642
Remove redundant mkdir
dodo920306 Sep 29, 2025
d1edf76
Fix missing 'l'
dodo920306 Sep 29, 2025
12f2400
Fix invalid usage of cross env
dodo920306 Sep 29, 2025
1c5ca60
Rename 'fakeAccountLogin' to 'login'
dodo920306 Sep 29, 2025
6007fae
Rename 'fakeAccountLogin' to 'login'
dodo920306 Sep 29, 2025
dc5fcaa
Fix deprecated AntD Menu props
dodo920306 Sep 29, 2025
159aab4
Fix isLogin logic
dodo920306 Sep 29, 2025
02c2979
Fix failed to acquire organizations
dodo920306 Sep 29, 2025
93bd424
Remove New Organization button
dodo920306 Sep 29, 2025
fcbd36c
Remove org operations temporarily
dodo920306 Sep 29, 2025
cbe99b9
Disable agents for now
dodo920306 Sep 29, 2025
4902ff7
Fix invalid path of nodes
dodo920306 Sep 29, 2025
1d4a903
Fix failed to get nodes
dodo920306 Sep 29, 2025
d49e811
Disable network pages
dodo920306 Sep 29, 2025
4b4450e
Fix failed to show channels
dodo920306 Sep 29, 2025
bce665a
Disable channel operations
dodo920306 Sep 29, 2025
0a8cea3
Fix failed to get channels for chaincodes
dodo920306 Sep 29, 2025
8fb225d
Fix failed to get user lists
dodo920306 Oct 5, 2025
b88aad8
Finish Chaincode uploading
dodo920306 Oct 6, 2025
ce02d1f
Fix some flake8 errors
dodo920306 Oct 10, 2025
56b524a
Fix the rest of flake8 errors
dodo920306 Oct 10, 2025
f311e0f
Fix unused vars
dodo920306 Oct 10, 2025
7dbde9d
Fix the make start command
dodo920306 Oct 10, 2025
7fcb4f4
Fix wrong fabric version URL
dodo920306 Oct 10, 2025
131e379
Comment out organization operations
dodo920306 Oct 10, 2025
680a189
Run prettier
dodo920306 Oct 10, 2025
0125b54
Comment out newman tests
dodo920306 Oct 10, 2025
0372e63
Move the fabric node dockerfile into src
dodo920306 Nov 7, 2025
d442037
Add a welcome message on the home page
dodo920306 Nov 7, 2025
5cc9b6b
Unify the padding size of the icons
dodo920306 Nov 7, 2025
565c149
Add a docs link to the sidebar of dashboards
dodo920306 Nov 7, 2025
826f048
Add the GitHub link to the side bar
dodo920306 Nov 11, 2025
f7a49af
Add a swagger link to the side bar
dodo920306 Nov 11, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/workflows/docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,16 +12,16 @@ jobs:

steps:
- uses: actions/checkout@v3
- name: Build images
run: |
make docker-compose
# - name: Build images
# run: |
# make docker-compose
- name: Start services
run: |
MODE=dev make start
sleep 10
- name: Run newman tests
run: |
make check-api
# - name: Run newman tests
# run: |
# make check-api
- name: Stop services
if: always()
run: |
Expand Down
8 changes: 3 additions & 5 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,6 @@ fabric.properties
bin/
tmp/
*.tmp
*.bak
*.swp
*~.nib
local.properties
Expand Down Expand Up @@ -219,7 +218,6 @@ yarn-error.log
/coverage
.idea
package-lock.json
*bak
.vscode

# visual studio code
Expand All @@ -244,9 +242,9 @@ src/dashboard/lambda/mock/index.js
.config
.config.old

# Cello local storage
/**/opt/*
/**/cello/*
# Fabric
src/api-engine/cello/builders
src/api-engine/cello/config

# Local Netlify folder
.netlify
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ check-api: ##@Test Run API tests with newman
cd tests/postman && docker compose up --abort-on-container-exit || (echo "API tests failed $$?"; exit 1)

start-docker-compose:
docker compose -f bootup/docker-compose-files/${COMPOSE_FILE} up -d --force-recreate --remove-orphans
docker compose -f docker-compose.dev.yaml up -d --build --force-recreate --remove-orphans

stop-docker-compose:
echo "Stop all services with bootup/docker-compose-files/${COMPOSE_FILE}..."
Expand All @@ -224,7 +224,7 @@ docker-rest-agent:
docker build -t hyperledger/cello-agent-docker:latest -f build_image/docker/agent/docker-rest-agent/Dockerfile.in ./ --build-arg pip=$(PIP) --platform linux/$(ARCH)

fabric:
docker build -t hyperledger/fabric:2.5.13 -f build_image/docker/cello-hlf/Dockerfile build_image/docker/cello-hlf/
docker build -t hyperledger/fabric:2.5.13 src/nodes/hyperledger-fabric

dashboard:
docker build -t hyperledger/cello-dashboard:latest -f build_image/docker/common/dashboard/Dockerfile.in ./
Expand Down
104 changes: 0 additions & 104 deletions bootup/kubernetes/Makefile

This file was deleted.

40 changes: 0 additions & 40 deletions bootup/kubernetes/templates/api-engine-tasks/deploy.tmpl

This file was deleted.

18 changes: 0 additions & 18 deletions bootup/kubernetes/templates/api-engine/config.tmpl

This file was deleted.

40 changes: 0 additions & 40 deletions bootup/kubernetes/templates/api-engine/deploy-dev.tmpl

This file was deleted.

27 changes: 0 additions & 27 deletions bootup/kubernetes/templates/api-engine/deploy.tmpl

This file was deleted.

15 changes: 0 additions & 15 deletions bootup/kubernetes/templates/api-engine/ingress.tmpl

This file was deleted.

14 changes: 0 additions & 14 deletions bootup/kubernetes/templates/api-engine/service.tmpl

This file was deleted.

7 changes: 0 additions & 7 deletions bootup/kubernetes/templates/nginx/config.tmpl

This file was deleted.

20 changes: 0 additions & 20 deletions bootup/kubernetes/templates/nginx/deploy.tmpl

This file was deleted.

15 changes: 0 additions & 15 deletions bootup/kubernetes/templates/nginx/ingress.tmpl

This file was deleted.

14 changes: 0 additions & 14 deletions bootup/kubernetes/templates/nginx/service.tmpl

This file was deleted.

Loading
Loading