-
Notifications
You must be signed in to change notification settings - Fork 11
/
Makefile
36 lines (27 loc) · 1.09 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
SHELL=/bin/bash
.DEFAULT_GOAL := help
.PHONY: help
help: ## Shows this help text
@grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'
.PHONY: init
init: clean install ## Clean environment and reinstall all dependencies TODO: add `test` in the future
.PHONY: clean
clean: ## Removes project virtual env
rm -rf .venv build dist **/*.egg-info .pytest_cache node_modules .coverage
.PHONY: install
install: ## Install the project dependencies and pre-commit using Poetry.
poetry install --with lint,test
poetry run pre-commit install --hook-type pre-commit --hook-type commit-msg --hook-type pre-push
# .PHONY: test
# test: ## Run tests
# poetry run python -m pytest
.PHONY: lint
lint: ## Apply linters to all files
poetry run pre-commit run --all-files
.PHONY: clean-poetry-lock
clean-poetry-lock: ## Removes poetry.lock from all folders except .venv
find . -name \poetry.lock -type f -not -path "./.venv/*" -delete
.PHONY: build-pinecone
build-pinecone:
chmod +x build_pinecone_index.sh
./build_pinecone_index.sh