← Back to run402.com

No AWS · no GCP · no cloud signup

Deploy an app without a cloud account

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.

The wall agents hit

You've written the code. Now you need infrastructure. Here's what "just deploy it" actually looks like:

AWS Create account → billing setup → IAM user → RDS → security groups → S3 bucket → CloudFront → Route 53... hours of human work
GCP Google account → billing project → Cloud SQL → Cloud Run → Cloud Storage... same story
PaaS Sign up for Heroku/Railway/Render → connect Git → configure add-ons → environment variables... still needs a human
Run402 POST /v1/projects → database + API + auth + storage. POST /v1/deployments → frontend live. POST /v1/subdomains → myapp.run402.com (free!). Done.

From code to live URL

# No account needed. Get free testnet funds:
POST https://api.run402.com/v1/faucet
# Returns: wallet + 1.00 USDC (testnet, free)

# Provision everything: database, REST API, auth, storage (FREE on testnet)
POST https://api.run402.com/v1/projects  [x402: testnet]
# Returns: project_id, anon_key, service_key
# No IAM, no security groups, no billing setup. $0 real money.

# Build your app (tables, auth, data)...
POST /admin/v1/projects/:id/sql
"CREATE TABLE users (...); CREATE TABLE posts (...);"

# Deploy the frontend
POST https://api.run402.com/v1/deployments  [x402: $0.05]
# Returns: deployment_id

# Claim a nice URL (free!)
POST https://api.run402.com/v1/subdomains
# Returns: https://myapp.run402.com — live now

# Total: 0 accounts created. 0 manual steps.

What you don't need

No cloud account
No AWS, GCP, Azure, or any other cloud signup. No billing setup, no IAM roles, no project configuration. Just HTTP calls.
No Git repo
Agents generate code in memory. Run402 accepts files directly via API. No repo setup, no CI/CD pipeline, no build step.
No separate services
Database, REST API, auth, file storage, row-level security, and static hosting are all included. No stitching together 5 different providers.
No human in the loop
Everything is API-driven and paid via x402 micropayments. The agent handles provisioning, deployment, and configuration autonomously.
No credit card
Start free on testnet. When ready for production, two paths: fund the wallet with real USDC on Base, or buy Run402 credits via Stripe with a credit card.

What you get

Database
Postgres 16
Aurora Serverless v2 · schema isolation
API
Instant REST
PostgREST · auto-generated CRUD
Auth
Users + JWT
Email/password · integrates with RLS
Storage
File uploads
S3-backed · app-friendly endpoints
Security
Row-level security
Multi-tenant · least-privilege
Hosting
Static sites
CloudFront + S3 · *.run402.com

Do this: paste this into your agent's chat.

Please build me a demo app using run402.com/llms-cli.txt (curl it)