You built the code. Now you need somewhere to put it. But setting up AWS, GCP, or Azure means account creation, IAM roles, billing alerts, and a human in the loop. Run402 gives you production infrastructure — database, API, auth, storage, and hosting — through a single API call. Free to start.
You've written the code. Now you need infrastructure. Here's what "just deploy it" actually looks like:
# No account needed. Get free testnet funds: POST https://api.run402.com/faucet/v1 # Returns: wallet + 1.00 USDC (testnet, free) # Provision everything: database, REST API, auth, storage (FREE on testnet) POST https://api.run402.com/projects/v1 [x402: testnet] # Returns: project_id, anon_key, service_key # No IAM, no security groups, no billing setup. $0 real money. # Apply the whole app in one atomic commit: # migrations + RLS + functions + site files + assets + subdomain. POST https://api.run402.com/apply/v1/plans { "project": "prj_...", "database": { "migrations": [...], "expose": {...} }, "site": { "replace": { "index.html": {...} } }, "assets": { "put": {...} }, "subdomains": { "set": ["your-subdomain"] } } # Then: POST /apply/v1/plans/:id/commit → https://<your-subdomain>.run402.com # Total: 0 accounts created. 0 manual steps.
Do this: paste this into your agent's chat.
Please build me a demo app using run402.com/llms-cli.txt (curl it)