Skip to content

Commit

Permalink
remove docs command from makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
JaeAeich committed May 27, 2024
1 parent 33e7f64 commit a2fd06c
Showing 1 changed file with 0 additions and 12 deletions.
12 changes: 0 additions & 12 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,6 @@ help:
@echo " \033[36mInstall dependencies\033[0m"
@echo " \033[1mformat-lint \033[37m(fl\033[0m)"
@echo " \033[36mFormats and lints python files\033[0m"
@echo " \033[1mdocs \033[37m(d\033[0m)"
@echo " \033[36mAuto generates docs using sphinx\033[0m"
@echo " \033[1mtest \033[37m(t\033[0m)"
@echo " \033[36mRun tests\033[0m"
@echo " \033[1mbuild-service-image \033[37m(bsi\033[0m)"
Expand Down Expand Up @@ -117,16 +115,6 @@ format-lint:
.PHONY: fl
fl: format-lint

.PHONY: docs
docs:
@if [ -f .venv/bin/sphinx-apidoc ]; then \
sphinx-apidoc -o docs/pages tesk; \
else \
echo "👁️ Please install sphinx to generate docs, create venv using 'make v' and install using `make i`."; \
fi

.PHONY: d
d: docs

.PHONY: build-service-image
build-service-image:
Expand Down

0 comments on commit a2fd06c

Please sign in to comment.