Right now I believe there is a misalign with readmie.md files and Makefile commands.
Right now I have made some refactor for Makefile and readme.md file for google adk agent
#39
If you could take a look on what I introduced in those two files.
I believe we need to do some changes in other agents and readme.
So user with a use of make... commands going one by one with them will be able to make agent working locally or deploy on openshift cluster.
When we start llama server in terminal we need to keep it and then open new at root folder.
Then we do:
cd agents/google/adk
make run-app
So we go in the folder then make run-app:
run-app: ## Run agent locally with hot-reload
@source .venv/bin/activate && set -a && source .env && set +a && \
lsof -ti:$${PORT:-8000} | xargs kill -9 2>/dev/null; true && \
uv run uvicorn main:app --host 0.0.0.0 --port $${PORT:-8000} --reload --reload-exclude .venv
in which we activate venv then set .env variables, next kill the process so we will not spawn another one, and then run agent.
and that process follow other commands and steps.
added information to login to OC and DOCKER:

Command:
Mby it should delete previous agent before deploying new one?
Right now I believe there is a misalign with readmie.md files and Makefile commands.
Right now I have made some refactor for
Makefileandreadme.mdfile for google adk agent#39
If you could take a look on what I introduced in those two files.
I believe we need to do some changes in other agents and readme.
So user with a use of
make...commands going one by one with them will be able to make agent working locally or deploy on openshift cluster.When we start llama server in terminal we need to keep it and then open new at root folder.
Then we do:
cd agents/google/adk make run-appSo we go in the folder then make run-app:
in which we activate venv then set .env variables, next kill the process so we will not spawn another one, and then run agent.
and that process follow other commands and steps.
added information to login to OC and DOCKER:

Command:
Mby it should delete previous agent before deploying new one?