curl -X POST "https://api.korve.dev/v1/orgs/$ORG_ID/manifest/plan" \
-H "Authorization: Bearer korve_..." \
-H "Content-Type: application/json" \
-d '{
"version": 1,
"organization": "acme",
"projects": [
{
"name": "Storefront",
"slug": "storefront",
"runtimeClass": "scale-to-zero",
"git": {
"repo": "acme/storefront",
"ref": "main"
},
"env": {
"NODE_ENV": "production"
},
"environments": {
"KEY": "value"
},
"domains": [
"app.acme.com"
],
"storage": [
{
"name": "uploads"
}
],
"queues": [
{
"name": "jobs"
}
]
}
]
}'