-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #7 from neuroforgede/packaging
Add support for templating of string variables via env vars via {{ nothelm.env.VARIABLE_NAME }}
- Loading branch information
Showing
5 changed files
with
45 additions
and
4 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
This file was deleted.
Oops, something went wrong.
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,4 @@ | ||
# no default variables here | ||
replica_count: 2 | ||
outside_port: 8899 | ||
home_dir: "{{ nothelm.env.HOME }}/hi" |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,7 +14,7 @@ def cli_test_suite(): | |
setuptools.setup( | ||
name="nothelm.py", | ||
scripts=["bin/nothelm"], | ||
version="0.2.1", | ||
version="0.2.2", | ||
author="NeuroForge GmbH & Co. KG", | ||
author_email="[email protected]", | ||
description="nothelm.py", | ||
|