From 96f95d13a04885028f0d80c238096201cbc15f42 Mon Sep 17 00:00:00 2001 From: stefanicjuraj Date: Tue, 8 Oct 2024 18:02:35 +0200 Subject: [PATCH 1/6] docs: add subscription section Signed-off-by: stefanicjuraj --- astro.config.mjs | 7 ++ src/content/docs/misc/subscription.mdx | 111 +++++++++++++++++++++++++ 2 files changed, 118 insertions(+) create mode 100644 src/content/docs/misc/subscription.mdx diff --git a/astro.config.mjs b/astro.config.mjs index ddfba744..5fe682bc 100644 --- a/astro.config.mjs +++ b/astro.config.mjs @@ -211,6 +211,13 @@ export default defineConfig({ { label: 'Misc', items: [ + { + label: 'Subscription', + link: '/misc/subscription', + attrs: { + icon: 'daytona.svg', + }, + }, { label: 'Telemetry', link: '/misc/telemetry', diff --git a/src/content/docs/misc/subscription.mdx b/src/content/docs/misc/subscription.mdx new file mode 100644 index 00000000..808ec104 --- /dev/null +++ b/src/content/docs/misc/subscription.mdx @@ -0,0 +1,111 @@ +--- +title: Subscription +description: Learn how to manage your Daytona subscription. +--- + +Daytona is a subscription-based platform that offers a range of features and services to help you manage your development environments. This guide provides an overview of the subscription management features available in Daytona. + +## Subscription Plans + +Daytona offers [**Free**](#free-subscription), [**Basic**](#basic-subscription), [**Premium**](#premium-subscription), [**Premium GPU**](#premium-gpu-subscription), and [**Enterprise**](#enterprise-subscription) subscription plans to provide users with a plan that best suits their requirements. + +Each subscription plan includes a set of resources, features, and usage hours to support your development environment effectively. + +| **Configuration** | **Free** | **Basic** | **Premium** | **Premium GPU** | **Enterprise** | +| ------------------------------ | :--------: | :---------: | :-----------: | :---------------: | :--------------: | +| vCPU | 4 | 4 | 8 | 8 | [**`Let's talk`**](https://go.daytona.io/slack) | +| Memory (GB) | 8 | 8 | 16 | 16 | | +| Available Usage (hrs) | 20 | 150 | 150 | 150 | | +| **Add-on Packages** | | | | | | +| +40 Compute Hours | **`✘`** | **`✔`** | **`✔`** | **`✔`** | | +| +100,000 Tokens for AI | **`✘`** | **`✔`** | **`✔`** | **`✔`** | | + +:::note +Subscription plans can be upgraded or downgraded based on your requirements. [Contact us](https://go.daytona.io/slack) to learn more about the subscription plans and how they can help you manage your development environments effectively. +::: + +## Free Subscription + +The Free subscription plan is ideal for users who want to explore Daytona's features and services. The Free plan provides limited resources and usage hours, making it suitable for small-scale projects and personal use. + +- **vCPU**: 4 + + The Free plan includes 4 virtual CPUs, enabling users to run multiple development environments simultaneously. + +- **Memory (GB)**: 8 + + The Free plan provides 8 GB of memory, allowing users to allocate sufficient resources to their development environments. + +- **Available Usage (hrs)**: 20 + + The Free plan offers 20 hours of usage per month, allowing users to test Daytona's features and services. + +:::note +The Free plan is not eligible for add-on packages. +::: + +## Basic Subscription + +The Basic subscription plan is designed for users who require additional resources and usage hours. The Basic plan offers increased vCPU, memory, and usage hours, making it suitable for small to medium-sized projects. + +- **vCPU**: 4 + + The Basic plan includes 4 virtual CPUs, enabling users to run multiple development environments simultaneously. + +- **Memory (GB)**: 8 + + The Basic plan provides 8 GB of memory, allowing users to allocate sufficient resources to their development environments. + +- **Available Usage (hrs)**: 150 + + The Basic plan offers 150 hours of usage per month, allowing users to work on larger projects and collaborate with team members. + +:::note +The Basic plan is eligible for add-on packages, including +40 Compute Hours and +100,000 Tokens for AI. +::: + +## Premium Subscription + +The Premium subscription plan is ideal for users who require additional resources and features to support their development workflow. The Premium plan offers increased vCPU, memory, and usage hours, making it suitable for medium to large-scale projects. + +- **vCPU**: 8 + + The Premium plan includes 8 virtual CPUs, enabling users to run multiple development environments simultaneously. + +- **Memory (GB)**: 16 + + The Premium plan provides 16 GB of memory, allowing users to allocate sufficient resources to their development environments. + +- **Available Usage (hrs)**: 150 + + The Premium plan offers 150 hours of usage per month, allowing users to work on larger projects and collaborate with team members. + +:::note +The Premium plan is eligible for add-on packages, including +40 Compute Hours and +100,000 Tokens for AI. +::: + +## Premium GPU Subscription + +The Premium GPU subscription plan is designed for users who require additional resources and GPU support for their development workflow. The Premium GPU plan offers increased vCPU, memory, and GPU hours, making it suitable for projects that require GPU acceleration. + +- **vCPU**: 8 + + The Premium GPU plan includes 8 virtual CPUs, enabling users to run multiple development environments simultaneously. + +- **Memory (GB)**: 16 + + The Premium GPU plan provides 16 GB of memory, allowing users to allocate sufficient resources to their development environments. + +- **Available Usage (hrs)**: 150 + + The Premium GPU plan offers 150 hours of usage per month, allowing users to work on projects that require GPU acceleration. + +:::note +The Premium GPU plan is eligible for add-on packages, including +40 Compute Hours and +100,000 Tokens for AI. +::: + +## Enterprise Subscription + +The Enterprise subscription plan is designed for organizations that require additional resources, features, and support to manage their development environment. The Enterprise plan offers increased vCPU, memory, and usage hours, making it suitable for large-scale projects and enterprise use. + +[Contact us](https://go.daytona.io/slack) to learn more about the Enterprise subscription plan and how it can help your organization manage its development environments effectively. \ No newline at end of file From 50f7cd6b0d789450220e2a5c65f07d2f1b7b6f43 Mon Sep 17 00:00:00 2001 From: stefanicjuraj Date: Tue, 8 Oct 2024 18:02:42 +0200 Subject: [PATCH 2/6] docs: add icon Signed-off-by: stefanicjuraj --- src/assets/sidebar/daytona.svg | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 src/assets/sidebar/daytona.svg diff --git a/src/assets/sidebar/daytona.svg b/src/assets/sidebar/daytona.svg new file mode 100644 index 00000000..18d8d81b --- /dev/null +++ b/src/assets/sidebar/daytona.svg @@ -0,0 +1,3 @@ + + + From 205a6bdd7e03335f331b0f358831aaf969c2f284 Mon Sep 17 00:00:00 2001 From: stefanicjuraj Date: Tue, 8 Oct 2024 23:40:16 +0200 Subject: [PATCH 3/6] docs: remove subscription plans Signed-off-by: stefanicjuraj --- src/content/docs/misc/subscription.mdx | 107 +------------------------ 1 file changed, 3 insertions(+), 104 deletions(-) diff --git a/src/content/docs/misc/subscription.mdx b/src/content/docs/misc/subscription.mdx index 808ec104..dd85f17f 100644 --- a/src/content/docs/misc/subscription.mdx +++ b/src/content/docs/misc/subscription.mdx @@ -3,109 +3,8 @@ title: Subscription description: Learn how to manage your Daytona subscription. --- -Daytona is a subscription-based platform that offers a range of features and services to help you manage your development environments. This guide provides an overview of the subscription management features available in Daytona. +Daytona is a subscription-based platform that offers a range of features and services to help you manage your development environments. -## Subscription Plans +Subscription can be upgraded or downgraded based on your requirements. -Daytona offers [**Free**](#free-subscription), [**Basic**](#basic-subscription), [**Premium**](#premium-subscription), [**Premium GPU**](#premium-gpu-subscription), and [**Enterprise**](#enterprise-subscription) subscription plans to provide users with a plan that best suits their requirements. - -Each subscription plan includes a set of resources, features, and usage hours to support your development environment effectively. - -| **Configuration** | **Free** | **Basic** | **Premium** | **Premium GPU** | **Enterprise** | -| ------------------------------ | :--------: | :---------: | :-----------: | :---------------: | :--------------: | -| vCPU | 4 | 4 | 8 | 8 | [**`Let's talk`**](https://go.daytona.io/slack) | -| Memory (GB) | 8 | 8 | 16 | 16 | | -| Available Usage (hrs) | 20 | 150 | 150 | 150 | | -| **Add-on Packages** | | | | | | -| +40 Compute Hours | **`✘`** | **`✔`** | **`✔`** | **`✔`** | | -| +100,000 Tokens for AI | **`✘`** | **`✔`** | **`✔`** | **`✔`** | | - -:::note -Subscription plans can be upgraded or downgraded based on your requirements. [Contact us](https://go.daytona.io/slack) to learn more about the subscription plans and how they can help you manage your development environments effectively. -::: - -## Free Subscription - -The Free subscription plan is ideal for users who want to explore Daytona's features and services. The Free plan provides limited resources and usage hours, making it suitable for small-scale projects and personal use. - -- **vCPU**: 4 - - The Free plan includes 4 virtual CPUs, enabling users to run multiple development environments simultaneously. - -- **Memory (GB)**: 8 - - The Free plan provides 8 GB of memory, allowing users to allocate sufficient resources to their development environments. - -- **Available Usage (hrs)**: 20 - - The Free plan offers 20 hours of usage per month, allowing users to test Daytona's features and services. - -:::note -The Free plan is not eligible for add-on packages. -::: - -## Basic Subscription - -The Basic subscription plan is designed for users who require additional resources and usage hours. The Basic plan offers increased vCPU, memory, and usage hours, making it suitable for small to medium-sized projects. - -- **vCPU**: 4 - - The Basic plan includes 4 virtual CPUs, enabling users to run multiple development environments simultaneously. - -- **Memory (GB)**: 8 - - The Basic plan provides 8 GB of memory, allowing users to allocate sufficient resources to their development environments. - -- **Available Usage (hrs)**: 150 - - The Basic plan offers 150 hours of usage per month, allowing users to work on larger projects and collaborate with team members. - -:::note -The Basic plan is eligible for add-on packages, including +40 Compute Hours and +100,000 Tokens for AI. -::: - -## Premium Subscription - -The Premium subscription plan is ideal for users who require additional resources and features to support their development workflow. The Premium plan offers increased vCPU, memory, and usage hours, making it suitable for medium to large-scale projects. - -- **vCPU**: 8 - - The Premium plan includes 8 virtual CPUs, enabling users to run multiple development environments simultaneously. - -- **Memory (GB)**: 16 - - The Premium plan provides 16 GB of memory, allowing users to allocate sufficient resources to their development environments. - -- **Available Usage (hrs)**: 150 - - The Premium plan offers 150 hours of usage per month, allowing users to work on larger projects and collaborate with team members. - -:::note -The Premium plan is eligible for add-on packages, including +40 Compute Hours and +100,000 Tokens for AI. -::: - -## Premium GPU Subscription - -The Premium GPU subscription plan is designed for users who require additional resources and GPU support for their development workflow. The Premium GPU plan offers increased vCPU, memory, and GPU hours, making it suitable for projects that require GPU acceleration. - -- **vCPU**: 8 - - The Premium GPU plan includes 8 virtual CPUs, enabling users to run multiple development environments simultaneously. - -- **Memory (GB)**: 16 - - The Premium GPU plan provides 16 GB of memory, allowing users to allocate sufficient resources to their development environments. - -- **Available Usage (hrs)**: 150 - - The Premium GPU plan offers 150 hours of usage per month, allowing users to work on projects that require GPU acceleration. - -:::note -The Premium GPU plan is eligible for add-on packages, including +40 Compute Hours and +100,000 Tokens for AI. -::: - -## Enterprise Subscription - -The Enterprise subscription plan is designed for organizations that require additional resources, features, and support to manage their development environment. The Enterprise plan offers increased vCPU, memory, and usage hours, making it suitable for large-scale projects and enterprise use. - -[Contact us](https://go.daytona.io/slack) to learn more about the Enterprise subscription plan and how it can help your organization manage its development environments effectively. \ No newline at end of file +[Contact us](https://go.daytona.io/slack) to learn more about the subscription and how it can help you manage your development environments effectively. From ebc47c281e0f82f344eb46aae464f39f0b78da25 Mon Sep 17 00:00:00 2001 From: stefanicjuraj Date: Wed, 9 Oct 2024 19:37:35 +0200 Subject: [PATCH 4/6] docs: modify subscription section Signed-off-by: stefanicjuraj --- src/content/docs/misc/subscription.mdx | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/src/content/docs/misc/subscription.mdx b/src/content/docs/misc/subscription.mdx index dd85f17f..68d4df2b 100644 --- a/src/content/docs/misc/subscription.mdx +++ b/src/content/docs/misc/subscription.mdx @@ -5,6 +5,24 @@ description: Learn how to manage your Daytona subscription. Daytona is a subscription-based platform that offers a range of features and services to help you manage your development environments. +Daytona subscriptions determine the resources available in your development environments: + +- **vCPU** + + Defines the processing power available for your development environments. + +- **Memory (GB)** + + Defines the amount of memory available for your development environments. + +- **Availabe Usage (Hours)** + + Defines the amount of available usage available for your development environments. + +- **Add-on Packages** + + Defines the additional packages available for your development environments. Available add-on packages: `+40 Computer Hours`, `+100,000 Tokens for API`. + Subscription can be upgraded or downgraded based on your requirements. [Contact us](https://go.daytona.io/slack) to learn more about the subscription and how it can help you manage your development environments effectively. From 3dcec2513f00f7ad9a3bf2b975273872d634a53d Mon Sep 17 00:00:00 2001 From: stefanicjuraj Date: Mon, 14 Oct 2024 20:36:34 +0200 Subject: [PATCH 5/6] docs: fix typo Signed-off-by: stefanicjuraj --- src/content/docs/misc/subscription.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/docs/misc/subscription.mdx b/src/content/docs/misc/subscription.mdx index 68d4df2b..401d2399 100644 --- a/src/content/docs/misc/subscription.mdx +++ b/src/content/docs/misc/subscription.mdx @@ -15,7 +15,7 @@ Daytona subscriptions determine the resources available in your development envi Defines the amount of memory available for your development environments. -- **Availabe Usage (Hours)** +- **Available Usage (Hours)** Defines the amount of available usage available for your development environments. From 970500e2f944d57a434be8f3ec46a05502e39d2a Mon Sep 17 00:00:00 2001 From: stefanicjuraj Date: Sun, 27 Oct 2024 02:07:59 +0200 Subject: [PATCH 6/6] docs: comment content Signed-off-by: stefanicjuraj --- astro.config.mjs | 14 +++++++------- src/content/docs/misc/subscription.mdx | 4 ++-- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/astro.config.mjs b/astro.config.mjs index 5fe682bc..074f32f7 100644 --- a/astro.config.mjs +++ b/astro.config.mjs @@ -211,13 +211,13 @@ export default defineConfig({ { label: 'Misc', items: [ - { - label: 'Subscription', - link: '/misc/subscription', - attrs: { - icon: 'daytona.svg', - }, - }, + // { + // label: 'Subscription', + // link: '/misc/subscription', + // attrs: { + // icon: 'daytona.svg', + // }, + // }, { label: 'Telemetry', link: '/misc/telemetry', diff --git a/src/content/docs/misc/subscription.mdx b/src/content/docs/misc/subscription.mdx index 401d2399..fe2a6560 100644 --- a/src/content/docs/misc/subscription.mdx +++ b/src/content/docs/misc/subscription.mdx @@ -3,7 +3,7 @@ title: Subscription description: Learn how to manage your Daytona subscription. --- -Daytona is a subscription-based platform that offers a range of features and services to help you manage your development environments. +{/* Daytona is a subscription-based platform that offers a range of features and services to help you manage your development environments. Daytona subscriptions determine the resources available in your development environments: @@ -25,4 +25,4 @@ Daytona subscriptions determine the resources available in your development envi Subscription can be upgraded or downgraded based on your requirements. -[Contact us](https://go.daytona.io/slack) to learn more about the subscription and how it can help you manage your development environments effectively. +[Contact us](https://go.daytona.io/slack) to learn more about the subscription and how it can help you manage your development environments effectively. */}