group1/group2/reponame


/my-endpoint , If I need to use one(or many) API call ( fetch or any sdk ( aws / gcp ..) ) , is it better to trigger a function and wait for the result or I can chain the API call directly from the worker ?

mainenv.ASSETS.fetch right?selflare to dev locally for pages ? "source": {
"type": "git",
"config": {
"type": "gitlab",
"owner": "m",
"repo_name": "${CI_PROJECT_NAME}",
"gitlab_project": "${CI_PROJECT_NAMESPACE}/${CI_PROJECT_NAME}"
}, echo "🚀 Creating Cloudflare Pages project: $PROJECT_NAME"
curl -s -X POST "$CF_API" \
-H "$CF_AUTH_HEADER" \
-H "Content-Type: application/json" \
--data-binary @- << EOF
{
"name": "$PROJECT_NAME",
"production_branch": "$BRANCH_NAME",
"build_config": {
"build_command": "$BUILD_COMMAND",
"destination_dir": "$BUILD_OUTPUT"
},
"source": {
"type": "git",
"config": {
"type": "gitlab",
"owner": "myowner",
"repo_name": "${CI_PROJECT_NAMESPACE}/${CI_PROJECT_NAME}",
},
"production_branch": "$BRANCH_NAME"
}
}/my-endpointenv.ASSETS.fetchapp.get('/*', (c) => {
return c.env.ASSETS.fetch(c.req.raw);
});selflare