Skip to content

Commit f64bd23

Browse files
authored
proper sequence for devnet setup (#63)
## πŸ“ Summary <!--- A general summary of your changes --> ## β›± Motivation and Context <!--- Why is this change required? What problem does it solve? --> ## πŸ“š References <!-- Any interesting external links to documentation, articles, tweets which add value to the PR --> --- ## βœ… I have run these commands * [ ] `make lint` * [ ] `make test` * [ ] `go mod tidy`
1 parent 26976a7 commit f64bd23

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

β€Ždocs/devenv-setup.mdβ€Ž

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -71,16 +71,20 @@ curl -v \
7171
"network": "production"
7272
}'
7373

74-
# 3. Create (and enable) a new builder configuration
74+
# 3. Create (and enable) a new empty builder configuration
7575
curl -v \
7676
--url http://localhost:8081/api/admin/v1/builders/configuration/test_builder \
77+
--data '{}'
78+
79+
# 4. Actual configuration is stored in secrets. Put it there
80+
curl -v \
81+
--url http://localhost:8081/api/admin/v1/builders/secrets/test_builder \
7782
--data '{
7883
"rbuilder": {
7984
"extra_data": "FooBar"
8085
}
8186
}'
82-
83-
# 4. Enable the new builder instance
87+
# 5. Enable the new builder instance
8488
curl -v \
8589
--url http://localhost:8081/api/admin/v1/builders/activation/test_builder \
8690
--data '{

0 commit comments

Comments
Β (0)