curl --request POST \
--url https://api.runloop.ai/v1/repositories/inspections/{id}/add_user_manifest \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"container_config": {
"base_image_name": "<string>",
"setup_commands": [
"<string>"
]
},
"workspaces": [
{
"name": "<string>",
"path": "<string>",
"package_manager": "<string>",
"workspace_setup_commands": [
"<string>"
],
"workspace_refresh_commands": [
"<string>"
],
"dev_commands": {
"install": "<string>",
"build": "<string>",
"test": "<string>",
"lint": "<string>"
},
"required_env_vars": [
"<string>"
]
}
]
}'