Configure operator identities for staging
Deploy story
What this commit did to the running system — joined from the forge receipt chain, the part a commit page elsewhere cannot show.
Not deployed through the forge lane
No push, promotion, build, or deploy receipt references this commit (receipts are scanned over a bounded recent window). Changes shipped by full node replacement carry their proof in the release gate receipt instead.
Changed files
-
modified
config/runtime.exs -
modified
docs/runtime-configuration.md -
added
lib/openagents/accounts/operator_config.ex -
added
test/openagents/accounts/operator_config_test.exs
Diff
4 files changed, +56 -0
config/runtime.exs modified +6
@@ -114,6 +114,11 @@ if config_env() == :prod and runtime_role == :web do
| 114 | 114 |
|
| 115 | 115 |
|
| 116 | 116 |
|
| 117 |
|
|
| 118 |
|
|
| 119 |
|
|
| 120 |
|
|
| 121 |
|
|
| 117 | 122 |
|
| 118 | 123 |
|
| 119 | 124 |
|
@@ -313,6 +318,7 @@ if config_env() == :prod and runtime_role == :web do
| 313 | 318 |
|
| 314 | 319 |
|
| 315 | 320 |
|
| 321 |
|
|
| 316 | 322 |
|
| 317 | 323 |
|
| 318 | 324 |
|
docs/runtime-configuration.md modified +1
@@ -130,6 +130,7 @@ URLs, receipts, or checked-in environment files.
| 130 | 130 |
|
| 131 | 131 |
|
| 132 | 132 |
|
| 133 |
|
|
| 133 | 134 |
|
| 134 | 135 |
|
| 135 | 136 |
|
lib/openagents/accounts/operator_config.ex added +34
@@ -0,0 +1,34 @@
| 1 |
|
|
| 2 |
|
|
| 3 |
|
|
| 4 |
|
|
| 5 |
|
|
| 6 |
|
|
| 7 |
|
|
| 8 |
|
|
| 9 |
|
|
| 10 |
|
|
| 11 |
|
|
| 12 |
|
|
| 13 |
|
|
| 14 |
|
|
| 15 |
|
|
| 16 |
|
|
| 17 |
|
|
| 18 |
|
|
| 19 |
|
|
| 20 |
|
|
| 21 |
|
|
| 22 |
|
|
| 23 |
|
|
| 24 |
|
|
| 25 |
|
|
| 26 |
|
|
| 27 |
|
|
| 28 |
|
|
| 29 |
|
|
| 30 |
|
|
| 31 |
|
|
| 32 |
|
|
| 33 |
|
|
| 34 |
|
test/openagents/accounts/operator_config_test.exs added +15
@@ -0,0 +1,15 @@
| 1 |
|
|
| 2 |
|
|
| 3 |
|
|
| 4 |
|
|
| 5 |
|
|
| 6 |
|
|
| 7 |
|
|
| 8 |
|
|
| 9 |
|
|
| 10 |
|
|
| 11 |
|
|
| 12 |
|
|
| 13 |
|
|
| 14 |
|
|
| 15 |
|