mirror of
https://github.com/amithkoujalgi/ollama4j.git
synced 2025-10-14 09:28:58 +02:00
Improve Makefile output and update pre-commit config
Added colored echo statements to Makefile targets for clearer output and improved developer experience. Updated commitizen hook in .pre-commit-config.yaml to v4.9.1 for latest features and fixes.
This commit is contained in:
parent
cae8b6e1e4
commit
2f83a5c98c
@ -21,7 +21,7 @@ repos:
|
|||||||
|
|
||||||
# for commit message formatting
|
# for commit message formatting
|
||||||
- repo: https://github.com/commitizen-tools/commitizen
|
- repo: https://github.com/commitizen-tools/commitizen
|
||||||
rev: v4.9.0
|
rev: v4.9.1
|
||||||
hooks:
|
hooks:
|
||||||
- id: commitizen
|
- id: commitizen
|
||||||
stages: [commit-msg]
|
stages: [commit-msg]
|
||||||
|
52
Makefile
52
Makefile
@ -2,49 +2,61 @@ dev:
|
|||||||
@echo "Setting up dev environment..."
|
@echo "Setting up dev environment..."
|
||||||
@command -v pre-commit >/dev/null 2>&1 || { echo "Error: pre-commit is not installed. Please install it first."; exit 1; }
|
@command -v pre-commit >/dev/null 2>&1 || { echo "Error: pre-commit is not installed. Please install it first."; exit 1; }
|
||||||
@command -v docker >/dev/null 2>&1 || { echo "Error: docker is not installed. Please install it first."; exit 1; }
|
@command -v docker >/dev/null 2>&1 || { echo "Error: docker is not installed. Please install it first."; exit 1; }
|
||||||
pre-commit install
|
@pre-commit install
|
||||||
pre-commit autoupdate
|
@pre-commit autoupdate
|
||||||
pre-commit install --install-hooks
|
@pre-commit install --install-hooks
|
||||||
|
|
||||||
#pre-commit run --all-files
|
|
||||||
|
|
||||||
apply-formatting:
|
|
||||||
mvn spotless:apply
|
|
||||||
|
|
||||||
check-formatting:
|
check-formatting:
|
||||||
mvn spotless:check
|
@echo "\033[0;34mChecking code formatting...\033[0m"
|
||||||
|
@mvn spotless:check
|
||||||
|
|
||||||
|
apply-formatting:
|
||||||
|
@echo "\033[0;32mApplying code formatting...\033[0m"
|
||||||
|
@mvn spotless:apply
|
||||||
|
# pre-commit run --all-files
|
||||||
|
|
||||||
build:
|
build:
|
||||||
mvn -B clean install -Dgpg.skip=true
|
@echo "\033[0;34mBuilding project (GPG skipped)...\033[0m"
|
||||||
|
@mvn -B clean install -Dgpg.skip=true
|
||||||
|
|
||||||
full-build:
|
full-build:
|
||||||
mvn -B clean install
|
@echo "\033[0;34mPerforming full build...\033[0m"
|
||||||
|
@mvn -B clean install
|
||||||
|
|
||||||
unit-tests:
|
unit-tests:
|
||||||
mvn clean test -Punit-tests
|
@echo "\033[0;34mRunning unit tests...\033[0m"
|
||||||
|
@mvn clean test -Punit-tests
|
||||||
|
|
||||||
integration-tests:
|
integration-tests:
|
||||||
export USE_EXTERNAL_OLLAMA_HOST=false && mvn clean verify -Pintegration-tests
|
@echo "\033[0;34mRunning integration tests (local)...\033[0m"
|
||||||
|
@export USE_EXTERNAL_OLLAMA_HOST=false && mvn clean verify -Pintegration-tests
|
||||||
|
|
||||||
integration-tests-remote:
|
integration-tests-remote:
|
||||||
export USE_EXTERNAL_OLLAMA_HOST=true && export OLLAMA_HOST=http://192.168.29.223:11434 && mvn clean verify -Pintegration-tests -Dgpg.skip=true
|
@echo "\033[0;34mRunning integration tests (remote)...\033[0m"
|
||||||
|
@export USE_EXTERNAL_OLLAMA_HOST=true && export OLLAMA_HOST=http://192.168.29.223:11434 && mvn clean verify -Pintegration-tests -Dgpg.skip=true
|
||||||
|
|
||||||
doxygen:
|
doxygen:
|
||||||
doxygen Doxyfile
|
@echo "\033[0;34mGenerating documentation with Doxygen...\033[0m"
|
||||||
|
@doxygen Doxyfile
|
||||||
|
|
||||||
list-releases:
|
list-releases:
|
||||||
curl 'https://central.sonatype.com/api/internal/browse/component/versions?sortField=normalizedVersion&sortDirection=desc&page=0&size=20&filter=namespace%3Aio.github.ollama4j%2Cname%3Aollama4j' \
|
@echo "\033[0;34mListing latest releases...\033[0m"
|
||||||
|
@curl 'https://central.sonatype.com/api/internal/browse/component/versions?sortField=normalizedVersion&sortDirection=desc&page=0&size=20&filter=namespace%3Aio.github.ollama4j%2Cname%3Aollama4j' \
|
||||||
--compressed \
|
--compressed \
|
||||||
--silent | jq -r '.components[].version'
|
--silent | jq -r '.components[].version'
|
||||||
|
|
||||||
docs-build:
|
docs-build:
|
||||||
cd ./docs && npm install --prefix && npm run build
|
@echo "\033[0;34mBuilding documentation site...\033[0m"
|
||||||
|
@cd ./docs && npm install --prefix && npm run build
|
||||||
|
|
||||||
docs-serve:
|
docs-serve:
|
||||||
cd ./docs && npm install && npm run start
|
@echo "\033[0;34mServing documentation site...\033[0m"
|
||||||
|
@cd ./docs && npm install && npm run start
|
||||||
|
|
||||||
start-cpu:
|
start-cpu:
|
||||||
docker run -it -v ~/ollama:/root/.ollama -p 11434:11434 ollama/ollama
|
@echo "\033[0;34mStarting Ollama (CPU mode)...\033[0m"
|
||||||
|
@docker run -it -v ~/ollama:/root/.ollama -p 11434:11434 ollama/ollama
|
||||||
|
|
||||||
start-gpu:
|
start-gpu:
|
||||||
docker run -it --gpus=all -v ~/ollama:/root/.ollama -p 11434:11434 ollama/ollama
|
@echo "\033[0;34mStarting Ollama (GPU mode)...\033[0m"
|
||||||
|
@docker run -it --gpus=all -v ~/ollama:/root/.ollama -p 11434:11434 ollama/ollama
|
Loading…
x
Reference in New Issue
Block a user