curl --request POST \
--url https://api.case.dev/projects/v1 \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"sourceType": "github",
"description": "<string>",
"githubRepo": "<string>",
"githubBranch": "main",
"thurgoodSessionId": "<string>",
"s3SourceBucket": "<string>",
"s3SourcePrefix": "<string>",
"framework": "<string>",
"buildCommand": "<string>",
"installCommand": "<string>",
"startCommand": "<string>",
"rootDirectory": "./",
"defaultVcpu": "0.25 vCPU",
"defaultMemory": "0.5 GB"
}
'