Skip to main content

Your vibe-coded app is live. Now what?

ยท 5 min read
Norah Klintberg Sakal
AI Consultant & Developer

The 7 AWS resources you need to go from a working prototype to a deployment you actually own.

Getting to a live URL is the easy part now.

The harder question is whether you actually own what you built.

Can you move it?
Can you debug it?
Can you explain the stack to a client?
Can you protect your API keys?

If the answer is "No ๐Ÿ™‚โ€โ†”๏ธ" or "I'm not sure ๐Ÿฅน" โ†’ your AI app is still a hosted prototype.

Here are the 7 things you need to deploy your vibe-coded app and own the whole stack on AWS:

7 AWS resources
1
Frontend host
โ†’
S3 + CloudFront
2
Custom domain
โ†’
Route 53
3
Backend API
โ†’
API Gateway + Lambda
4
Deployment framework
โ†’
AWS SAM
5
User authentication
โ†’
Cognito User Pool
6
Login UI
โ†’
Amplify UI
7
Database
โ†’
DynamoDB
Also grab these
+
Secrets management
โ†’
SSM Parameter Store
+
Monitoring + debugging
โ†’
CloudWatch logs

1. Frontend host โ†’ S3 + CloudFrontโ€‹

Your frontend needs to live somewhere.
S3 stores your files.
CloudFront serves them fast, globally and with caching built in.
This is what hosting a static site on AWS means in practice:

your userRoute 53S3 + CloudFrontAmplify UIAPI GatewayCognitoAWS SAMLambdaDynamoDB

2. Custom domain โ†’ Route 53โ€‹

Already have a custom domain? Great.
Route 53 is AWS's DNS service.
It's how you point yourapp.com at your CloudFront distribution instead of some auto-generated URL:

your userRoute 53S3 + CloudFrontAmplify UIAPI GatewayCognitoAWS SAMLambdaDynamoDB

3. Backend API โ†’ API Gateway + Lambdaโ€‹

API Gateway is the front door to your backend.
Lambda is the function that runs your backend code when a request comes in.
Together they give you a serverless API with no server to manage:

your userRoute 53S3 + CloudFrontAmplify UIAPI GatewayCognitoAWS SAMLambdaDynamoDB

4. Deployment framework โ†’ AWS SAMโ€‹

AWS SAM is how you deploy your backend in code.
You describe your Lambda functions and API Gateway in a template and SAM handles the deployment:

your userRoute 53S3 + CloudFrontAmplify UIAPI GatewayCognitoAWS SAMLambdaDynamoDB

5. Auth โ†’ Cognitoโ€‹

Cognito manages your users:

  • sign up
  • sign in
  • tokens
  • password resets

Your API Gateway can use Cognito to protect your backend routes automatically:

your userRoute 53S3 + CloudFrontAmplify UIAPI GatewayCognitoAWS SAMLambdaDynamoDB

6. Login UI โ†’ Amplify UIโ€‹

Amplify has a pre-built login and signup UI that wire directly into Cognito.
You drop <Authenticator /> in your code, configure your Cognito user pool and the login flow works:

your userRoute 53S3 + CloudFrontAmplify UIAPI GatewayCognitoAWS SAMLambdaDynamoDB

7. Database โ†’ DynamoDBโ€‹

DynamoDB is AWS's serverless NoSQL database.
And yes, NoSQL is a hill I'll die on ๐Ÿ—ฃ๏ธ

No connection strings.
No idle charges.
Scales automatically and integrates cleanly with Lambda:

your userRoute 53S3 + CloudFrontAmplify UIAPI GatewayCognitoAWS SAMLambdaDynamoDB

Full overviewโ€‹

Click any AWS resource in the diagram below to highlight how it connects to the rest of the stack:

your userRoute 53S3 + CloudFrontAmplify UIAPI GatewayCognitoAWS SAMLambdaDynamoDB

Summaryโ€‹

Seven AWS services. That's the whole map.

You don't need to understand all of them on day one.

But you do need to know they exist and what each does.

Want to own the whole stack?

My upcoming course Ship It walks you from vibe-coded AI agent to deployed AWS app, step by step: frontend, backend, auth, API, database and deployment.

Join the waitlist:

If you'd rather walk through your specific app: what it does, where it lives, what it needs next Grab a free 30-min call โ†—

I'll help you map it to the serverless AWS stack.