Skip to content

Commit cf29a4a

Browse files
authored
Merge pull request #102 from DefangLabs/september-compose-update
September Compose Update
2 parents 6eece81 + d8d0821 commit cf29a4a

File tree

8 files changed

+64
-3
lines changed

8 files changed

+64
-3
lines changed
Lines changed: 61 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
---
2+
slug: 2024-09-30-product-update
3+
title: September 2024 Defang Compose Update
4+
tags:
5+
[
6+
Cloud,
7+
NoDevOps,
8+
BYOC,
9+
Postgres,
10+
Digital Ocean,
11+
CLI,
12+
AI,
13+
Debugging,
14+
Defang Compose Update,
15+
]
16+
author: Defang Team
17+
---
18+
import { Button } from '@mui/material';
19+
20+
21+
![Defang Compose Update](/img/defang-compose-update.webp)
22+
23+
Hi everyone - you can feel the weather getting cooler, but things are heating up at Defang! Sep was another amazing month, with new features, new users, and new partners. Here is a quick summary:
24+
25+
1. **Bring-Your-Own-Cloud (BYOC) DigitalOcean in Preview!** From the very beginning, it has been part of Defang’s vision to not only provide a simpler way to develop, deploy, and debug your cloud applications, but to be able to do so in a portable way. As developers, we all value the flexibility of knowing our application can be deployed to our chosen cloud, even if that choice changes over time. Today, we take a big step in providing that choice with the Preview of BYOC with DigitalOcean! This literally means the same application can be deployed to the Defang Playground, AWS, or DigitalOcean with no changes! Take a look at the [docs](https://docs.defang.io/docs/providers/digitalocean), give it a try and share your feedback on our [Discord](http://s.defang.io/discord).
26+
2. **Managed Postgres**: Postgres is one of the fundamental building blocks of many applications, and users wanted us to provide a way to add that to their application in a declarative way. So that’s exactly what we have done. You can now specify the Postgres image in your `compose.yaml` file and indicate that you want it managed by your cloud provider using `x-defang-postgres: true` in your service definition. Defang will automatically provision the appropriate managed Postgres in the target cloud (e.g. RDS on AWS) and do all the heavy lifting to configure and hook things up correctly. Check out the docs [here](https://docs.defang.io/docs/concepts/managed-storage/managed-postgres), give it a try and let us know what you think.
27+
3. We continue to improve the **quality and performance** of existing features:
28+
1. We’ve made several improvements to our AI-assistant to increase the robustness of our Develop and Debug modules. For example, we updated generation to comply with latest Compose spec. We also addressed the top issues we saw people facing when deploying, such as out-of-memory errors when building containers.
29+
2. To cope with our growing user-base, we have made several scaling improvements to our Playground and Portal environments.
30+
3. We also made several updates to our documentation and samples to keep up with the changes and enhancements in the Defang product.
31+
32+
---
33+
34+
![Workshop](/img/september-update/workshop.jpg)
35+
36+
## September Events
37+
38+
In Sep, the Defang team participated in a number of events including HacktheNorth, LangaraHacks, MLH Global Hack Week and other MLH hackathons. It’s great to see Defang being put to use by these hackers to build their amazing projects. And we get useful insights from these events that help us improve the product. We will continue to do more of these events in the future - watch our [LinkedIn](https://www.linkedin.com/company/defanglabs) page for announcements.
39+
40+
---
41+
42+
## Google for Startups Accelerator Canada
43+
44+
Also in Sep, Defang was included in the [Google for Startups Accelerator Canada.](https://www.linkedin.com/posts/irankarimian_ai-startups-dominate-latest-google-for-startups-activity-7241805161411551232-thky?utm_source=share&utm_medium=member_desktop) This is a great recognition of the value Defang is providing to cloud developers. Through our collaboration with Google, we hope to add GCP as another target cloud for Defang in the coming months - stay tuned!
45+
46+
---
47+
48+
<img src="/img/september-update/coffee-chat.png" alt="TownHall" style={{ width: 300 }} />
49+
50+
## Defang Coffee Chat
51+
52+
Mark your calendars! If you’re eager to learn more about what’s coming next, join us for our Defang Coffee Chat on Oct 23rd. We’ll be sharing our future roadmap, answering your questions, and gathering your feedback.
53+
54+
<Button href="https://lu.ma/hlnq84xq" variant="contained" size="large" target="_blank">
55+
Register here!
56+
</Button>
57+
58+
---
59+
60+
As always, we appreciate your feedback and are committed to making Defang the easiest way to develop, deploy, and debug your cloud applications. Go build something awesome! 🚀
61+

docs/concepts/managed-storage/managed-object-storage.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@ Managed Object Storage, like AWS S3, is a service that allows you to store and r
1818
| --- | --- |
1919
| [Playground](/docs/providers/playground.md) ||
2020
| [AWS](/docs/providers/aws/aws.md) ||
21-
| [DigitalOcean](/docs/providers/digital-ocean/digital-ocean.md) ||
21+
| [DigitalOcean](/docs/providers/digitalocean/digitalocean.md) ||

docs/concepts/managed-storage/managed-postgres.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Postgres, or PostgreSQL, is an advanced open-source relational database system k
1414
| --- | --- |
1515
| [Playground](/docs/providers/playground) ||
1616
| [AWS](/docs/providers/aws/aws.md#managed-postgres) ||
17-
| [DigitalOcean](/docs/providers/digital-ocean/digital-ocean.md) ||
17+
| [DigitalOcean](/docs/providers/digitalocean/digitalocean.md) ||
1818

1919
## How to use Managed Postgres
2020

docs/concepts/managed-storage/managed-redis.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Redis is an in-memory data structure store widely used for caching, real-time an
1414
| --- | --- |
1515
| [Playground](/docs/providers/playground.md#managed-redis) ||
1616
| [AWS](/docs/providers/aws/aws.md#managed-redis) ||
17-
| [DigitalOcean](/docs/providers/digital-ocean/digital-ocean.md) ||
17+
| [DigitalOcean](/docs/providers/digitalocean/digitalocean.md) ||
1818

1919
## How to use Managed Redis
2020

File renamed without changes.
File renamed without changes.
165 KB
Loading
120 KB
Loading

0 commit comments

Comments
 (0)