Skip to content

Commit 7d9d325

Browse files
committed
Add Agentic Apps blog post with hero image
1 parent a018eb7 commit 7d9d325

File tree

2 files changed

+72
-0
lines changed

2 files changed

+72
-0
lines changed

blog/2025-08-22-agentic-apps.md

Lines changed: 72 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,72 @@
1+
---
2+
title: "Deploying Agentic Apps to the Cloud Shouldn’t Be This Hard…"
3+
description: "Agentic apps, cloud-native infrastructure, and how Defang simplifies deployment"
4+
slug: agentic-apps
5+
tags:
6+
[Agentic Apps, AI, LLMs, Cloud, AWS, GCP, DigitalOcean, DevOps, Deployments]
7+
author: Defang Team
8+
---
9+
10+
![Agentic Apps](/img/agentic-apps/agentic-apps.png)
11+
12+
## Deploying Agentic Apps to the Cloud Shouldn’t Be This Hard…
13+
14+
Agentic apps are redefining how software is built: multi-agent workflows, persistent memory, tool-using LLMs, and orchestrated autonomy. But deploying them to the cloud is still painful - for example, your agentic app typically needs to provision:
15+
16+
- Managed databases like Postgres or MongoDB
17+
- Fast, scalable caching (hello Redis)
18+
- Containerized compute that scales
19+
- Secure networking and service discovery
20+
- Managed LLMs like AWS Bedrock or GCP Vertex AI
21+
22+
And for many teams, these apps must run inside the customer’s cloud, where sensitive data lives and compliance rules apply. That means you cannot just spin up your own environment and call it a day. Instead, you are deploying across AWS, GCP, DigitalOcean, or whichever stack your customers demand, each with its own APIs, quirks, and limitations.
23+
24+
Now you are not just building agents; you are picking the right infrastructure, rewriting IaC templates for every provider, and untangling the edge cases of each cloud.
25+
26+
The result: weeks of DevOps headaches, lost momentum, and engineers stuck wiring infrastructure instead of shipping agents.
27+
28+
## We Made it Simple with Cloud Native Support for Agentic Apps
29+
30+
That’s where Defang comes in. We make it easy to deploy full-stack agentic apps to your cloud of choice: native, secure, and scalable.
31+
Defang understands the common ingredients of agentic apps and makes them first-class citizens:
32+
33+
- Compute: Your Dockerized services deploy as cloud-native workloads (e.g. AWS ECS, or GCP Cloud Run)
34+
- Databases: Provision managed Postgres or MongoDB with one config line
35+
- Caching: Add Redis and Defang spins up a managed Redis instance in your cloud
36+
- LLMs: Integrate directly with Bedrock or Vertex AI - even provision an OpenAI gateway for compatibility with OpenAI APIs.
37+
- Secure Defaults: : TLS, secrets, IAM, and service accounts handled out of the box
38+
39+
## Built for All your Favorite Agentic Frameworks
40+
41+
Defang works seamlessly with leading agentic frameworks. Try them out with our ready-to-deploy samples:
42+
43+
- [Autogen](https://github.com/DefangLabs/samples/tree/main/samples/agentic-autogen) - demo featuring Mistral AI + FastAPI, deployable with Defang’s OpenAI Access Gateway.
44+
- [CrewAI](https://docs.defang.io/blog/2025/06/16/crew-ai-sample) - sample app showing multi-agent orchestration in action.
45+
- [LangGraph](https://github.com/DefangLabs/samples/tree/main/samples/agentic-langgraph) - workflow sample that defines and controls multi-step agentic graphs with LangChain.
46+
47+
More framework templates coming soon.
48+
49+
## Why It Matters
50+
51+
Agentic apps need to be fast, secure, and ready to scale. Defang delivers cloud-native deployments in your environment (AWS, GCP, DO), so you can move from idea to production quickly with consistent behavior across dev, test, and prod.
52+
53+
## The Developer Journey, Simplified
54+
55+
1. Build your agentic app locally using Docker Compose
56+
2. Test in Defang's free playground with `defang compose up`
57+
3. Deploy to your cloud:
58+
59+
```bash
60+
defang compose up --provider=aws # or gcp, do
61+
```
62+
63+
It just works. No Terraform. No YAML explosion. No vendor lock-in.
64+
65+
## The Future of AI Apps Is Agentic and Cloud-Native
66+
67+
Agility and scalability should not be a trade-off. With Defang, you get both. Developers focus on agents, tools, and outcomes. Defang takes care of the cloud infrastructure.
68+
69+
## Try it out
70+
71+
Explore more samples at [docs.defang.io](https://docs.defang.io)
72+
Join our community on [Discord](https://s.defang.io/discord)
691 KB
Loading

0 commit comments

Comments
 (0)