We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 79e0653 commit 29f6f30Copy full SHA for 29f6f30
1 file changed
imageroot/actions/configure-module/10configure_environment_vars
@@ -15,9 +15,12 @@ data = json.load(sys.stdin)
15
16
#This is specific to you module, so you need to change it accordingly.
17
host = data.get("host")
18
-
+ADMIN_USERNAME = data.get("ADMIN_USERNAME", "listmonk")
19
+ADMIN_PASSWORD = data.get("ADMIN_PASSWORD", "listmonk")
20
config = {
21
"APP_HOST": "https://"+host,
22
+ "ADMIN_USERNAME": ADMIN_USERNAME,
23
+ "ADMIN_PASSWORD": ADMIN_PASSWORD,
24
}
25
agent.write_envfile("listmonk.env", config)
26
0 commit comments