bldeploy

Getting started

BlueDeploy is designed to be driven by your AI assistant rather than by you. You give it a token once; after that you just describe what you want.

1. Create a token

Go to your tokens page and create one. It is shown once.

2. Tell your assistant

Paste this into Claude, Cursor, ChatGPT, or any agent that can make HTTP requests. Replace the token with your own.

Deploy my site with BlueDeploy. Read https://bldeploy.com/llms.txt
for the API, and use my token: bd_your_token_here

That single line is enough — the assistant fetches the rest itself.

3. Ask for what you want

“Build me a landing page for my bakery and deploy it.” Your assistant writes the site, deploys it, and gives you the URL. If the deploy fails, it reads the error and fixes it without involving you.

What you can deploy

Static sites

HTML, CSS, JavaScript, images and fonts. Also framework builds that produce static output — send the contents of dist/ or build/.

Not yet: server apps

Anything needing Node, Python, PHP or a server-side database is rejected with a clear message. Support for these is in progress.

For developers

The full machine-readable API reference lives at /llms.txt. Sites are served from *.bldeploy.run, a separate domain from this one, so nothing anyone deploys can reach the platform.

curl -X POST https://bldeploy.com/api/v1/deploy \
  -H "Authorization: Bearer $BLDEPLOY_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"project":"my-site","files":[
        {"path":"index.html","content":"<h1>Hello</h1>"}]}'