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

ADD make clean #474

Merged
merged 2 commits into from
May 24, 2024
Merged
Show file tree
Hide file tree
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: 5 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,11 @@ mkdebug:
mkrestart:
./k8s/debug/restart.sh

.PHONY: clean # Remove python and yarn modules
clean:
make -C web clean
make -C api clean

apirun:
make -C api run

Expand Down
4 changes: 4 additions & 0 deletions api/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,10 @@ requirements: venv
pip-compile --quiet --upgrade requirements/common.in
pip-compile --quiet --upgrade requirements/dev.in

.PHONY: clean # remove venv
clean:
rm -rf venv

debug:
make -C .. debug
yeetdb:
Expand Down
11 changes: 10 additions & 1 deletion web/Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,13 @@
help:
@echo ''

node_modules:
yarn

.PHONY: run
run: node_modules
yarn run start
yarn run start

,PHONY: clean
clean:
rm -rf node_modules
Loading