Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 7 additions & 3 deletions docs/devenv-setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,16 +71,20 @@ curl -v \
"network": "production"
}'

# 3. Create (and enable) a new builder configuration
# 3. Create (and enable) a new empty builder configuration
curl -v \
--url http://localhost:8081/api/admin/v1/builders/configuration/test_builder \
--data '{}'

# 4. Actual configuration is stored in secrets. Put it there
curl -v \
--url http://localhost:8081/api/admin/v1/builders/secrets/test_builder \
--data '{
"rbuilder": {
"extra_data": "FooBar"
}
}'

# 4. Enable the new builder instance
# 5. Enable the new builder instance
curl -v \
--url http://localhost:8081/api/admin/v1/builders/activation/test_builder \
--data '{
Expand Down