Skip to content

Commit 43df012

Browse files
Merge pull request #140 from DefangLabs/linda-docs-5
Improved "features" page + minor fixes
2 parents adebf08 + 8c6f501 commit 43df012

File tree

7 files changed

+21
-12
lines changed

7 files changed

+21
-12
lines changed

docs/concepts/deployment-modes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: Defang provides three deployment modes which allow you to balance c
44
sidebar_position: 501
55
---
66

7-
# Defang Deployment Modes
7+
# Deployment Modes
88

99
Defang provides three deployment modes: development, staging, and production. These modes allow you to balance cost and resiliency according to your needs.
1010

docs/faq/questions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ import {Button, ButtonGroup, FormGroup, FormLabel} from "@mui/material"
2727

2828
### Do you plan to support other clouds?
2929

30-
- While we currently support [AWS](/docs/providers/aws) for production, [GCP](/docs/providers/gcp) and [DigitalOcean](/docs/providers/digitalocean) are in preview with [Defang V1](blog/2024-12-04-launch-week). We plan to support other clouds, such as [Azure](/docs/providers/azure), in future releases.
30+
- While we currently support [AWS](/docs/providers/aws) for production, [GCP](/docs/providers/gcp) and [DigitalOcean](/docs/providers/digitalocean) are in preview with [Defang V1](/blog/2024-12-04-launch-week). We plan to support other clouds, such as [Azure](/docs/providers/azure), in future releases.
3131

3232
## Deployment Process
3333

docs/intro/features.mdx

Lines changed: 15 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,17 +6,26 @@ description: Defang Features
66

77
# Defang Features
88

9-
Defang provides a streamlined experience to develop, deploy, observe, and update your cloud applications. Defang includes the following features:
9+
Defang provides a streamlined experience to develop, deploy, and debug your cloud applications. Defang includes the following features:
1010

11-
- Support for [various types of applications](/docs/intro/use-cases): Web services and APIs, mobile app backends, ML services, hosting LLMs, etc.
12-
- Support for your programming [language of choice](/docs/samples): Node.js, Python, Golang, or anything else you can package in a Dockerfile.
11+
### Wide Variety of Use Cases
12+
- Support for [various types of applications](/docs/intro/use-cases): web services and APIs, mobile app backends, ML services, hosting LLMs, etc...
13+
- Support for your programming [language of choice](/docs/samples): Node.js, Python, Golang, or anything else you can package in a Dockerfile
14+
15+
### AI-Driven Features
1316
- Built-in AI agent to go [from natural language prompt to an outline project](/docs/tutorials/generate-new-code-using-ai)
1417
- Built-in AI agent to help you [debug your cloud applications](/docs/concepts/debug)
18+
19+
### Container Friendly
1520
- Automated [Dockerfile builds](/docs/concepts/deployments)
1621
- Support for [pre-built Docker containers](/docs/tutorials/deploy-container-using-the-cli), from public or private image registries
1722
- Ability to express your project configuration using a [Docker Compose YAML](/docs/concepts/compose) file
18-
- Ability to manage [encrypted configuration values](/docs/concepts/configuration)
19-
- Pre-configured environments with built-in [security](/docs/concepts/security), [networking](/docs/concepts/networking), and [observability](/docs/concepts/observability)
23+
24+
### Effortless Deployment
2025
- [One-command deployments](/docs/getting-started#install-the-defang-cli)
21-
- Support for [GPUs](/docs/concepts/resources)
26+
- Support for [GPUs](/docs/concepts/resources) and [managed storage options](/docs/concepts/managed-storage)
2227
- Support for Infra-as-Code via the [Defang Pulumi provider](/docs/concepts/pulumi)
28+
29+
### Security and Configuration
30+
- Ability to manage [encrypted configuration values](/docs/concepts/configuration)
31+
- Pre-configured environments with built-in [security](/docs/concepts/security), [networking](/docs/concepts/networking), and [observability](/docs/concepts/observability)

docs/providers/_category_.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
"position": 400,
44
"link": {
55
"type": "generated-index",
6-
"description": "Defang allows you to use your own cloud accounts to deploy your applications. Click on a link below to read documentation about specific providers. If no provider is specified, the Defang CLI will prompt you to select a provider interactively. The selected provider will be stored in the working directory of the project’s compose file and will be applied to all subsequent commands by default. You can also specify a preferred provider in the compose file by using `x-defang-provider` extension at the root level of the compose file.",
6+
"description": "Defang allows you to use your own cloud accounts to deploy your applications. Click on a link below to read documentation about specific providers. If no provider is specified, the Defang CLI will prompt you to select a provider interactively. The selected provider will be stored in the working directory of the project’s compose file and will be applied to all subsequent commands by default. You can also specify a preferred provider in the compose file by using `x-defang-provider` extension at the root level of the compose file."
77
}
88
}

docs/providers/aws/aws.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: Defang allows you to easily create and manage full, scalable applic
44
sidebar_position: 000
55
---
66

7-
# AWS
7+
# Amazon Web Services (AWS)
88

99
Why should you use Defang with AWS? Defang allows you to easily create and manage full, scalable applications with AWS. Defang aims to make it easier to deploy your services to the cloud. Don't waste your time learning the ins and outs of AWS, deciding which of the 200+ services to use, and then writing the infrastructure code to deploy your services, and making sure they are properly secured. Defang does all of that for you.
1010

docs/tutorials/deploy-using-pulumi.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ mkdir project && cd project
2323

2424
If you're familiar with Pulumi and/or are already logged in with the Pulumi CLI, you can skip the next step.
2525

26-
If you are new to pulumi and/or don't have an account, you can "login" to the filesystem by running the following command:
26+
If you are new to Pulumi and/or don't have an account, you can "login" to the filesystem by running the following command:
2727

2828
```bash
2929
pulumi login file://./

docs/tutorials/use-your-own-domain-name.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: How to Use Your Own Domain
33
sidebar_position: 600
44
---
55

6-
# How to Use Your Own Domain with AWS
6+
# How to Use Your Own Domain With AWS
77

88
<iframe width="560" height="315" src="https://www.youtube.com/embed/n4RlMpsdTbs?si=_Ru6tobSbi9LT4Q1" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
99

0 commit comments

Comments
 (0)