deploy_feedback
deploy_feedback copied to clipboard
API to programmatically set git repo
Is there a way to create a project with git repo?
Can I pass it to POST https://dash.deno.com/_api/projects same way I pass envVars?
{
"name": "beautiful-name-11",
"organizationId": "00000000-0000-0000-0000-000000000000",
"envVars": {
"SECRET": "123"
},
"git": {
"repository": {
"id": 123456,
"owner": "jane",
"name": "cat"
},
"entrypoint": "/mod.ts",
"productionBranch": "main"
}
}
Can I update git repo similar to envVars from #246?