Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
What does this do?
This pull request focuses on improving logging, refactoring initial pipeline downloads, and adding new configuration options. The most important changes include the addition of new environment variables and refactoring of the
start.sh
andmain.py
files to improve readability and functionality.I've mostly been tweaking here and there. I can separate this into two PRs if that's preferred, one for the logging, then one for the download refactoring. Happy to make any changes!
Configuration Changes:
LOG_LEVEL
,RESET_PIPELINES_DIR
,PIPELINES_REQUIREMENTS_PATH
,PIPELINES_URLS
, andSUPPRESS_PIP_OUTPUT
inconfig.py
.Code Refactoring:
start.sh
and wrote it toutils/pipelines/downloads.py
.main.py
to improve readability and functionality by reorganizing imports, removing unused imports, and modularizing functions related to downloading and installing pipelines.Logging Improvements:
debug
,info
,warning
,error
) to improve log management.Example Log Output from https://github.com/jedwards1230/lilbro-pipelines/tree/main/pipelines
Dependency Updates:
gitpython
torequirements-minimum.txt
andrequirements.txt
to support pipeline downloading from GitHub repositories.SUPPRESS_PIP_OUTPUT
to suppresspip install
output.pip install
command at once.What is left?