Create a new web app project deployed
curl --request POST \
--url https://api.case.dev/applications/v1/projects \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"gitRepo": "<string>",
"gitBranch": "main",
"framework": "<string>",
"buildCommand": "<string>",
"installCommand": "<string>",
"outputDirectory": "<string>",
"rootDirectory": "<string>"
}
'API key starting with sk_case_
Project name
GitHub repository URL or "owner/repo"
Git branch to deploy
Framework (e.g., "nextjs", "remix", "astro")
Custom build command
Custom install command
Build output directory
Root directory of the project
Success
Was this page helpful?
curl --request POST \
--url https://api.case.dev/applications/v1/projects \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"gitRepo": "<string>",
"gitBranch": "main",
"framework": "<string>",
"buildCommand": "<string>",
"installCommand": "<string>",
"outputDirectory": "<string>",
"rootDirectory": "<string>"
}
'