I would like in 1 command (api) to create a new BluePrints so that I can create a demo and deploy it on render easily (with my render.yaml in the root of my project)
Something like:
curl --request POST \
--url https://api.render.com/v1/services \
--header 'accept: application/json' \
--header 'content-type: application/json' \
--header 'Authorization: Bearer {{render_api_token}}'
--data '
{
"github": "https://github.com/jycouet/my_great_project",
"name": "my_great_project", //optionnal
"branch": "main" // optionnal
}