File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11OPENAI_API_KEY = ADD-YOUR-OPENAI_API_KEY-HERE
2+ REPO_NAME = agentic-ai-workflow
3+ DOCKERHUB_USERNAME = lpm0073
4+
5+ # These settings are probably fine to leave as-is.
26ENVIRONMENT = local
3- DOCKERHUB_USERNAME = ADD-YOUR-DOCKERHUB_USERNAME-HERE
47DOCKERHUB_ACCESS_TOKEN = ADD-YOUR-DOCKERHUB_ACCESS_TOKEN-HERE
58LLM_TOOL_CHOICE = required
69LOGGING_LEVEL = 20
Original file line number Diff line number Diff line change 1+
2+ .mypy_cache /
3+
14# my own homegrown file to store coverage report output from Docker.
25coverage.out
36
Original file line number Diff line number Diff line change @@ -129,8 +129,8 @@ docker-coverage:
129129 /bin/bash -c " python -m coverage run --source=app --omit='app/tests/*' -m unittest discover -s app/tests && python -m coverage report -m --omit='app/tests/*' && python -m coverage xml --omit='app/tests/*'"
130130
131131docker-prune :
132- @if [ " ` docker ps -aq` " ]; then \
133- docker stop $(docker ps -aq ) ; \
132+ @if [ -n " $$ ( docker ps -aq) " ]; then \
133+ docker stop $$ (docker ps -aq ) ; \
134134 fi
135135 @docker container prune -f
136136 @docker image prune -af
You can’t perform that action at this time.
0 commit comments