Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Let make clean clean db files #357

Merged
merged 1 commit into from
Dec 15, 2021
Merged
Changes from all commits
Commits
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
5 changes: 3 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -179,9 +179,10 @@ check: ##@Code Check code format
test-case: ##@Code Run test case for flask server
@$(MAKE) -C src/operator-dashboard/test/ all

clean: ##@Code Clean tox result
clean: docker-clean ##@Code Clean tox result, clean built images and db files
rm -rf .tox .cache *.egg-info build/
find . -name "*.pyc" -o -name "__pycache__" | xargs rm -rf
rm -rf /opt/cello/*

# TODO (david_dornseier): As long as there are no release versions, always rewrite
# the entire changelog (bug)
Expand Down Expand Up @@ -293,7 +294,7 @@ api-engine: # for debug only now

docker-rest-agent: # for debug only now
docker build -t hyperledger/cello-agent-docker:latest -f build_image/docker/agent/docker-rest-agent/Dockerfile.in ./ --build-arg pip=$(PIP)
start-dashboard:
start-dashboard:
make -C src/dashboard start;

.PHONY: \
Expand Down