NoOperation
NoOperation
Explore posts from servers
CDCloudflare Developers
Created by NoOperation on 1/31/2025 in #general-help
Deployment failed via API
I did try to deploy:
const accountId = process.env.CLOUDFLARE_ACCOUNT_ID;
const apiToken = process.env.CLOUDFLARE_API_TOKEN;

const endpoint = `https://api.cloudflare.com/client/v4/accounts/${accountId}/pages/projects/${projectName}/deployments`;

try {
const response = await fetch(endpoint, {
method: 'POST',
headers: {
'Content-Type': 'application/json',
Authorization: `Bearer ${apiToken}`,
},
});
const accountId = process.env.CLOUDFLARE_ACCOUNT_ID;
const apiToken = process.env.CLOUDFLARE_API_TOKEN;

const endpoint = `https://api.cloudflare.com/client/v4/accounts/${accountId}/pages/projects/${projectName}/deployments`;

try {
const response = await fetch(endpoint, {
method: 'POST',
headers: {
'Content-Type': 'application/json',
Authorization: `Bearer ${apiToken}`,
},
});
` Got this error:
Deployment failed: {
result: null,
success: false,
errors: [
{
code: 8000096,
message: 'A "manifest" field was expected in the request body but was not provided.'
}
],
messages: []
}
Deployment failed: {
result: null,
success: false,
errors: [
{
code: 8000096,
message: 'A "manifest" field was expected in the request body but was not provided.'
}
],
messages: []
}
37 replies
CDCloudflare Developers
Created by NoOperation on 1/16/2025 in #general-help
Cloudflare hosting for a lot of git repos
Hello. I would to host more than 1.000 Git repos through Cloudflare, and wold like to increase my current limit of around 100.
1 replies
CDCloudflare Developers
Created by NoOperation on 1/9/2025 in #pages-help
I need to be able to as fast as possible make my subdomain on pages available. Is it possible to get
After the buildstep finish I need to get the subdomain on pages reachable within 10-15 seconds. Is this possible to solve somehow? Does it differ between using my own domain and cloudflares allocated subdomains?
1 replies
LTLeaning Technologies
Created by NoOperation on 1/8/2025 in #support
Possible?
Hello. I need to solve this on client side: Pull down a git repo of 3 mb and save all files client side in browser Run a python script to modify these files Upload to same git repo Is this something cheerpx or cheerp can do in browser with WASM ?
2 replies