-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This commit does multiple things: * Move all standalone related work into the 'standalone' directory * Add documentation on how to use the script, see README.md * A a new "show" command to display a Kubernetes Job example on how to run the script as part of a Kubernetes job. Run it like so: `./standalone.py show` * Rework the SDG fetch to allow for push - this will be revisited once the final evaluation is implemented * Hide all the SDG related command for running SDG with the script, now the script only fetches SDG data * Add Makefile to generate the standalone script and format it with Ruff Signed-off-by: Sébastien Han <[email protected]>
- Loading branch information
Showing
7 changed files
with
641 additions
and
106 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
.PHONY: standalone | ||
|
||
standalone: | ||
python3 pipeline.py gen-standalone | ||
ruff format standalone/standalone.py |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.