From 064a92e6df0aebb30767d3a58fb36644c9f7a0e1 Mon Sep 17 00:00:00 2001 From: Arjun Aditya Date: Fri, 20 Dec 2024 02:26:21 +0530 Subject: [PATCH 1/2] add mode option to codeblocks --- apps/docs/content/bun/how-to/create.mdx | 6 ++++++ apps/docs/content/bun/overview.mdx | 1 + apps/docs/content/deno/how-to/create.mdx | 6 ++++++ apps/docs/content/dotnet/how-to/create.mdx | 6 ++++++ apps/docs/content/elasticsearch/how-to/create.mdx | 3 +++ apps/docs/content/elixir/how-to/create.mdx | 6 ++++++ apps/docs/content/gleam/how-to/create.mdx | 6 ++++++ apps/docs/content/go/how-to/create.mdx | 6 ++++++ apps/docs/content/java/how-to/create.mdx | 6 ++++++ apps/docs/content/keydb/how-to/create.mdx | 3 +++ apps/docs/content/mariadb/how-to/create.mdx | 3 +++ apps/docs/content/nginx/how-to/create.mdx | 6 ++++++ apps/docs/content/nodejs/how-to/create.mdx | 6 ++++++ apps/docs/content/php/how-to/create.mdx | 6 ++++++ apps/docs/content/python/how-to/create.mdx | 6 ++++++ apps/docs/content/rabbitmq/how-to/create.mdx | 3 +++ apps/docs/content/rust/how-to/create.mdx | 6 ++++++ 17 files changed, 85 insertions(+) diff --git a/apps/docs/content/bun/how-to/create.mdx b/apps/docs/content/bun/how-to/create.mdx index da69c44f..ceb05e67 100644 --- a/apps/docs/content/bun/how-to/create.mdx +++ b/apps/docs/content/bun/how-to/create.mdx @@ -162,6 +162,9 @@ Create a directory called `my-project`. Inside the `my-project` directory, creat project: # project name name: my-project + # Project mode (LIGHT or SERIOUS) + # The default is LIGHT, so it is not necessary to explicitly include it. + mode: LIGHT # array of project services services: - # service name @@ -408,6 +411,9 @@ Create a directory `my-project` if it doesn't exist. Create an `import.yml` file project: # project name name: my-project + # Project mode (LIGHT or SERIOUS) + # The default is LIGHT, so it is not necessary to explicitly include it. + mode: LIGHT # array of project services services: - # service name diff --git a/apps/docs/content/bun/overview.mdx b/apps/docs/content/bun/overview.mdx index 25e5949a..be157ea5 100644 --- a/apps/docs/content/bun/overview.mdx +++ b/apps/docs/content/bun/overview.mdx @@ -30,6 +30,7 @@ As said, there is no need for coding yet, we have created a [Github repository ```yml project: name: recipe-bun + tags: - zerops-recipe diff --git a/apps/docs/content/deno/how-to/create.mdx b/apps/docs/content/deno/how-to/create.mdx index 1e4e084e..69f30fc3 100644 --- a/apps/docs/content/deno/how-to/create.mdx +++ b/apps/docs/content/deno/how-to/create.mdx @@ -163,6 +163,9 @@ Create a directory called `my-project`. Inside the `my-project` directory, creat project: # project name name: my-project + # Project mode (LIGHT or SERIOUS) + # The default is LIGHT, so it is not necessary to explicitly include it. + mode: LIGHT # array of project services services: - # service name @@ -410,6 +413,9 @@ Create a directory `my-project` if it doesn't exist. Create an `import.yml` file project: # project name name: my-project + # Project mode (LIGHT or SERIOUS) + # The default is LIGHT, so it is not necessary to explicitly include it. + mode: LIGHT # array of project services services: - # service name diff --git a/apps/docs/content/dotnet/how-to/create.mdx b/apps/docs/content/dotnet/how-to/create.mdx index 97f04fc6..dcc0dffa 100644 --- a/apps/docs/content/dotnet/how-to/create.mdx +++ b/apps/docs/content/dotnet/how-to/create.mdx @@ -184,6 +184,9 @@ Create a directory `my-project`. Create an `description.yml` file inside the `my project: # project name name: my-project + # Project mode (LIGHT or SERIOUS) + # The default is LIGHT, so it is not necessary to explicitly include it. + mode: LIGHT # array of project services services: - # service name @@ -435,6 +438,9 @@ Create a directory `my-project` if it doesn't exist. Create an `import.yml` file project: # project name name: my-project + # Project mode (LIGHT or SERIOUS) + # The default is LIGHT, so it is not necessary to explicitly include it. + mode: LIGHT # array of project services services: - # service name diff --git a/apps/docs/content/elasticsearch/how-to/create.mdx b/apps/docs/content/elasticsearch/how-to/create.mdx index 987c2c07..a6155a59 100644 --- a/apps/docs/content/elasticsearch/how-to/create.mdx +++ b/apps/docs/content/elasticsearch/how-to/create.mdx @@ -153,6 +153,9 @@ Create a directory `my-project`. Create a `description.yml` file inside the dire project: # project name name: my-project + # Project mode (LIGHT or SERIOUS) + # The default is LIGHT, so it is not necessary to explicitly include it. + mode: LIGHT # array of project services services: - # service name diff --git a/apps/docs/content/elixir/how-to/create.mdx b/apps/docs/content/elixir/how-to/create.mdx index 6ea3d087..29ea529b 100644 --- a/apps/docs/content/elixir/how-to/create.mdx +++ b/apps/docs/content/elixir/how-to/create.mdx @@ -162,6 +162,9 @@ Create a directory called `my-project`. Inside the `my-project` directory, creat project: # project name name: my-project + # Project mode (LIGHT or SERIOUS) + # The default is LIGHT, so it is not necessary to explicitly include it. + mode: LIGHT # array of project services services: - # service name @@ -409,6 +412,9 @@ Create a directory `my-project` if it doesn't exist. Create an `import.yml` file project: # project name name: my-project + # Project mode (LIGHT or SERIOUS) + # The default is LIGHT, so it is not necessary to explicitly include it. + mode: LIGHT # array of project services services: - # service name diff --git a/apps/docs/content/gleam/how-to/create.mdx b/apps/docs/content/gleam/how-to/create.mdx index c9913ca7..4b44e58c 100644 --- a/apps/docs/content/gleam/how-to/create.mdx +++ b/apps/docs/content/gleam/how-to/create.mdx @@ -163,6 +163,9 @@ Create a directory called `my-project`. Inside the `my-project` directory, creat project: # project name name: my-project + # Project mode (LIGHT or SERIOUS) + # The default is LIGHT, so it is not necessary to explicitly include it. + mode: LIGHT # array of project services services: - # service name @@ -410,6 +413,9 @@ Create a directory `my-project` if it doesn't exist. Create an `import.yml` file project: # project name name: my-project + # Project mode (LIGHT or SERIOUS) + # The default is LIGHT, so it is not necessary to explicitly include it. + mode: LIGHT # array of project services services: - # service name diff --git a/apps/docs/content/go/how-to/create.mdx b/apps/docs/content/go/how-to/create.mdx index 6ed7cf59..b5edf771 100644 --- a/apps/docs/content/go/how-to/create.mdx +++ b/apps/docs/content/go/how-to/create.mdx @@ -185,6 +185,9 @@ Create a directory `my-project`. Create an `description.yml` file inside the `my project: # project name name: my-project + # Project mode (LIGHT or SERIOUS) + # The default is LIGHT, so it is not necessary to explicitly include it. + mode: LIGHT # array of project services services: - # service name @@ -406,6 +409,9 @@ Create a directory `my-project` if it doesn't exist. Create an `import.yml` file project: # project name name: my-project + # Project mode (LIGHT or SERIOUS) + # The default is LIGHT, so it is not necessary to explicitly include it. + mode: LIGHT # array of project services services: - # service name diff --git a/apps/docs/content/java/how-to/create.mdx b/apps/docs/content/java/how-to/create.mdx index 900fb85e..522db727 100644 --- a/apps/docs/content/java/how-to/create.mdx +++ b/apps/docs/content/java/how-to/create.mdx @@ -185,6 +185,9 @@ Create a directory `my-project`. Create an `description.yml` file inside the `my project: # project name name: my-project + # Project mode (LIGHT or SERIOUS) + # The default is LIGHT, so it is not necessary to explicitly include it. + mode: LIGHT # array of project services services: - # service name @@ -406,6 +409,9 @@ Create a directory `my-project` if it doesn't exist. Create an `import.yml` file project: # project name name: my-project + # Project mode (LIGHT or SERIOUS) + # The default is LIGHT, so it is not necessary to explicitly include it. + mode: LIGHT # array of project services services: - # service name diff --git a/apps/docs/content/keydb/how-to/create.mdx b/apps/docs/content/keydb/how-to/create.mdx index 919422a5..7d16f6c0 100644 --- a/apps/docs/content/keydb/how-to/create.mdx +++ b/apps/docs/content/keydb/how-to/create.mdx @@ -163,6 +163,9 @@ Create a directory `my-project`. Create a `description.yml` file inside the dire project: # project name name: my-project + # Project mode (LIGHT or SERIOUS) + # The default is LIGHT, so it is not necessary to explicitly include it. + mode: LIGHT # array of project services services: - # service name diff --git a/apps/docs/content/mariadb/how-to/create.mdx b/apps/docs/content/mariadb/how-to/create.mdx index 98075f32..830044e6 100644 --- a/apps/docs/content/mariadb/how-to/create.mdx +++ b/apps/docs/content/mariadb/how-to/create.mdx @@ -165,6 +165,9 @@ Create a directory `my-project`. Create a `description.yml` file inside the dire project: # project name name: my-project + # Project mode (LIGHT or SERIOUS) + # The default is LIGHT, so it is not necessary to explicitly include it. + mode: LIGHT # array of project services services: - # service name diff --git a/apps/docs/content/nginx/how-to/create.mdx b/apps/docs/content/nginx/how-to/create.mdx index 52aed18b..ebc9af7d 100644 --- a/apps/docs/content/nginx/how-to/create.mdx +++ b/apps/docs/content/nginx/how-to/create.mdx @@ -185,6 +185,9 @@ Create a directory `my-project`. Create an `description.yml` file inside the `my project: # project name name: my-project + # Project mode (LIGHT or SERIOUS) + # The default is LIGHT, so it is not necessary to explicitly include it. + mode: LIGHT # array of project services services: - # service name @@ -445,6 +448,9 @@ Create a directory `my-project` if it doesn't exist. Create an `import.yml` file project: # project name name: my-project + # Project mode (LIGHT or SERIOUS) + # The default is LIGHT, so it is not necessary to explicitly include it. + mode: LIGHT # array of project services services: - # service name diff --git a/apps/docs/content/nodejs/how-to/create.mdx b/apps/docs/content/nodejs/how-to/create.mdx index 62bf9393..67e69d5f 100644 --- a/apps/docs/content/nodejs/how-to/create.mdx +++ b/apps/docs/content/nodejs/how-to/create.mdx @@ -195,6 +195,9 @@ Create a directory called `my-project`. Inside the `my-project` directory, creat project: # project name name: my-project + # Project mode (LIGHT or SERIOUS) + # The default is LIGHT, so it is not necessary to explicitly include it. + mode: LIGHT # array of project services services: - # service name @@ -445,6 +448,9 @@ Create a directory `my-project` if it doesn't exist. Create an `import.yml` file project: # project name name: my-project + # Project mode (LIGHT or SERIOUS) + # The default is LIGHT, so it is not necessary to explicitly include it. + mode: LIGHT # array of project services services: - # service name diff --git a/apps/docs/content/php/how-to/create.mdx b/apps/docs/content/php/how-to/create.mdx index b61a5db8..95275f0a 100644 --- a/apps/docs/content/php/how-to/create.mdx +++ b/apps/docs/content/php/how-to/create.mdx @@ -187,6 +187,9 @@ Create a directory `my-project`. Create an `description.yml` file inside the `my project: # project name name: my-project + # Project mode (LIGHT or SERIOUS) + # The default is LIGHT, so it is not necessary to explicitly include it. + mode: LIGHT # array of project services services: - # service name @@ -439,6 +442,9 @@ Create a directory `my-project` if it doesn't exist. Create an `import.yml` file project: # project name name: my-project + # Project mode (LIGHT or SERIOUS) + # The default is LIGHT, so it is not necessary to explicitly include it. + mode: LIGHT # array of project services services: - # service name diff --git a/apps/docs/content/python/how-to/create.mdx b/apps/docs/content/python/how-to/create.mdx index 30d6eac6..a03ffdc3 100644 --- a/apps/docs/content/python/how-to/create.mdx +++ b/apps/docs/content/python/how-to/create.mdx @@ -186,6 +186,9 @@ Create a directory `my-project`. Create an `description.yml` file inside the `my project: # project name name: my-project + # Project mode (LIGHT or SERIOUS) + # The default is LIGHT, so it is not necessary to explicitly include it. + mode: LIGHT # array of project services services: - # service name @@ -437,6 +440,9 @@ Create a directory `my-project` if it doesn't exist. Create an `import.yml` file project: # project name name: my-project + # Project mode (LIGHT or SERIOUS) + # The default is LIGHT, so it is not necessary to explicitly include it. + mode: LIGHT # array of project services services: - # service name diff --git a/apps/docs/content/rabbitmq/how-to/create.mdx b/apps/docs/content/rabbitmq/how-to/create.mdx index f11cb322..1340100e 100644 --- a/apps/docs/content/rabbitmq/how-to/create.mdx +++ b/apps/docs/content/rabbitmq/how-to/create.mdx @@ -139,6 +139,9 @@ Create a directory `my-project`. Create a `description.yml` file inside the dire project: # project name name: my-project + # Project mode (LIGHT or SERIOUS) + # The default is LIGHT, so it is not necessary to explicitly include it. + mode: LIGHT # array of project services services: - # service name diff --git a/apps/docs/content/rust/how-to/create.mdx b/apps/docs/content/rust/how-to/create.mdx index bc1991fc..7bcd61f0 100644 --- a/apps/docs/content/rust/how-to/create.mdx +++ b/apps/docs/content/rust/how-to/create.mdx @@ -187,6 +187,9 @@ Create a directory `my-project`. Create an `description.yml` file inside the `my project: # project name name: my-project + # Project mode (LIGHT or SERIOUS) + # The default is LIGHT, so it is not necessary to explicitly include it. + mode: LIGHT # array of project services services: - # service name @@ -456,6 +459,9 @@ Create a directory `my-project` if it doesn't exist. Create an `import.yml` file project: # project name name: my-project + # Project mode (LIGHT or SERIOUS) + # The default is LIGHT, so it is not necessary to explicitly include it. + mode: LIGHT # array of project services services: - # service name From 8523d03a4ca3b025d5490df33c9c34fd3bdcffd7 Mon Sep 17 00:00:00 2001 From: Arjun Aditya Date: Fri, 20 Dec 2024 02:29:15 +0530 Subject: [PATCH 2/2] import ymls --- apps/docs/content/bun/overview.mdx | 4 +++- apps/docs/content/deno/overview.mdx | 3 +++ apps/docs/content/dotnet/overview.mdx | 10 ++++++++++ apps/docs/content/elixir/overview.mdx | 3 +++ apps/docs/content/gleam/overview.mdx | 3 +++ apps/docs/content/go/overview.mdx | 5 +++++ apps/docs/content/go/tutorial/quickstart.mdx | 5 +++++ apps/docs/content/java/overview.mdx | 5 +++++ apps/docs/content/nginx/tutorial/quickstart.mdx | 5 +++++ apps/docs/content/nodejs/overview.mdx | 3 +++ apps/docs/content/php/overview.mdx | 5 +++++ apps/docs/content/python/overview.mdx | 5 +++++ apps/docs/content/python/tutorial/quickstart.mdx | 5 +++++ apps/docs/content/rust/overview.mdx | 5 +++++ 14 files changed, 65 insertions(+), 1 deletion(-) diff --git a/apps/docs/content/bun/overview.mdx b/apps/docs/content/bun/overview.mdx index be157ea5..8723ad3a 100644 --- a/apps/docs/content/bun/overview.mdx +++ b/apps/docs/content/bun/overview.mdx @@ -30,7 +30,9 @@ As said, there is no need for coding yet, we have created a [Github repository ```yml project: name: recipe-bun - + # Project mode (LIGHT or SERIOUS) + # The default is LIGHT, so it is not necessary to explicitly include it. + mode: LIGHT tags: - zerops-recipe diff --git a/apps/docs/content/deno/overview.mdx b/apps/docs/content/deno/overview.mdx index 88644666..32b297c3 100644 --- a/apps/docs/content/deno/overview.mdx +++ b/apps/docs/content/deno/overview.mdx @@ -34,6 +34,9 @@ As said, there is no need for coding yet, we have created a [Github repository ```yml project: name: recipe-deno + # Project mode (LIGHT or SERIOUS) + # The default is LIGHT, so it is not necessary to explicitly include it. + mode: LIGHT tags: - zerops-recipe diff --git a/apps/docs/content/dotnet/overview.mdx b/apps/docs/content/dotnet/overview.mdx index 16185ef7..a4684150 100644 --- a/apps/docs/content/dotnet/overview.mdx +++ b/apps/docs/content/dotnet/overview.mdx @@ -29,7 +29,12 @@ As said, there is no need for coding yet, we have created a [Github repository ```yml project: + # Project mode (LIGHT or SERIOUS) + # The default is LIGHT, so it is not necessary to explicitly include it. + mode: LIGHT name: my-first-project + tags: + - zerops-recipe services: - hostname: helloworld type: rust@latest @@ -68,7 +73,12 @@ As said, there is no need for coding yet, we have created a [Github repository ```yml project: + # Project mode (LIGHT or SERIOUS) + # The default is LIGHT, so it is not necessary to explicitly include it. + mode: LIGHT name: my-first-project + tags: + - zerops-recipe services: - hostname: helloworld type: dotnet@latest diff --git a/apps/docs/content/elixir/overview.mdx b/apps/docs/content/elixir/overview.mdx index 8f828b97..d3637189 100644 --- a/apps/docs/content/elixir/overview.mdx +++ b/apps/docs/content/elixir/overview.mdx @@ -30,6 +30,9 @@ As said, there is no need for coding yet, we have created a [Github repository ```yml project: name: recipe-elixir + # Project mode (LIGHT or SERIOUS) + # The default is LIGHT, so it is not necessary to explicitly include it. + mode: LIGHT tags: - zerops-recipe diff --git a/apps/docs/content/gleam/overview.mdx b/apps/docs/content/gleam/overview.mdx index 0fbcc73a..1244aec5 100644 --- a/apps/docs/content/gleam/overview.mdx +++ b/apps/docs/content/gleam/overview.mdx @@ -29,6 +29,9 @@ As said, there is no need for coding yet, we have created a [Github repository ```yml project: name: recipe-gleam + # Project mode (LIGHT or SERIOUS) + # The default is LIGHT, so it is not necessary to explicitly include it. + mode: LIGHT tags: - zerops-recipe diff --git a/apps/docs/content/go/overview.mdx b/apps/docs/content/go/overview.mdx index 57d5f3be..d292bac5 100644 --- a/apps/docs/content/go/overview.mdx +++ b/apps/docs/content/go/overview.mdx @@ -27,7 +27,12 @@ As said, there is no need for coding yet, we have created a [Github repository ```yml project: + # Project mode (LIGHT or SERIOUS) + # The default is LIGHT, so it is not necessary to explicitly include it. + mode: LIGHT name: my-first-project + tags: + - zerops-recipe services: - hostname: helloworld type: go@latest diff --git a/apps/docs/content/go/tutorial/quickstart.mdx b/apps/docs/content/go/tutorial/quickstart.mdx index eba46b18..02a69dc4 100644 --- a/apps/docs/content/go/tutorial/quickstart.mdx +++ b/apps/docs/content/go/tutorial/quickstart.mdx @@ -24,7 +24,12 @@ As said, there is no need for coding yet, we have created a [Github repository ```yml project: + # Project mode (LIGHT or SERIOUS) + # The default is LIGHT, so it is not necessary to explicitly include it. + mode: LIGHT name: my-first-project + tags: + - zerops-recipe services: - hostname: helloworld type: go@latest diff --git a/apps/docs/content/java/overview.mdx b/apps/docs/content/java/overview.mdx index 59c3805f..0e894d3c 100644 --- a/apps/docs/content/java/overview.mdx +++ b/apps/docs/content/java/overview.mdx @@ -30,6 +30,11 @@ As said, there is no need for coding yet, we have created a [Github repository ```yml project: name: my-first-project + # Project mode (LIGHT or SERIOUS) + # The default is LIGHT, so it is not necessary to explicitly include it. + mode: LIGHT + tags: + - zerops-recipe services: - hostname: helloworld type: java@latest diff --git a/apps/docs/content/nginx/tutorial/quickstart.mdx b/apps/docs/content/nginx/tutorial/quickstart.mdx index 8d4aa732..db511ccb 100644 --- a/apps/docs/content/nginx/tutorial/quickstart.mdx +++ b/apps/docs/content/nginx/tutorial/quickstart.mdx @@ -15,7 +15,12 @@ As said, there is no need for coding yet, we have created a [Github repository ```yml project: + # Project mode (LIGHT or SERIOUS) + # The default is LIGHT, so it is not necessary to explicitly include it. + mode: LIGHT name: my-first-project + tags: + - zerops-recipe services: - hostname: helloworld type: php-apache@8.1+2.4 diff --git a/apps/docs/content/nodejs/overview.mdx b/apps/docs/content/nodejs/overview.mdx index e4650e8c..14eadcac 100644 --- a/apps/docs/content/nodejs/overview.mdx +++ b/apps/docs/content/nodejs/overview.mdx @@ -30,6 +30,9 @@ As said, there is no need for coding yet, we have created a [Github repository ```yml project: name: recipe-nodejs + # Project mode (LIGHT or SERIOUS) + # The default is LIGHT, so it is not necessary to explicitly include it. + mode: LIGHT tags: - zerops-recipe diff --git a/apps/docs/content/php/overview.mdx b/apps/docs/content/php/overview.mdx index 4c7f86d5..30530363 100644 --- a/apps/docs/content/php/overview.mdx +++ b/apps/docs/content/php/overview.mdx @@ -28,6 +28,11 @@ As said, there is no need for coding yet, we have created a [Github repository ```yml project: name: my-first-project + # Project mode (LIGHT or SERIOUS) + # The default is LIGHT, so it is not necessary to explicitly include it. + mode: LIGHT + tags: + - zerops-recipe services: - hostname: helloworld type: php-apache@8.1+2.4 diff --git a/apps/docs/content/python/overview.mdx b/apps/docs/content/python/overview.mdx index c7ae04d3..d7391f0a 100644 --- a/apps/docs/content/python/overview.mdx +++ b/apps/docs/content/python/overview.mdx @@ -28,6 +28,11 @@ As said, there is no need for coding yet, we have created a [Github repository ```yml project: name: my-first-project + # Project mode (LIGHT or SERIOUS) + # The default is LIGHT, so it is not necessary to explicitly include it. + mode: LIGHT + tags: + - zerops-recipe services: - hostname: helloworld type: python@latest diff --git a/apps/docs/content/python/tutorial/quickstart.mdx b/apps/docs/content/python/tutorial/quickstart.mdx index 7dbb8647..f76d6d63 100644 --- a/apps/docs/content/python/tutorial/quickstart.mdx +++ b/apps/docs/content/python/tutorial/quickstart.mdx @@ -25,6 +25,11 @@ As said, there is no need for coding yet, we have created a [Github repository ```yml project: name: my-first-project + # Project mode (LIGHT or SERIOUS) + # The default is LIGHT, so it is not necessary to explicitly include it. + mode: LIGHT + tags: + - zerops-recipe services: - hostname: helloworld type: python@latest diff --git a/apps/docs/content/rust/overview.mdx b/apps/docs/content/rust/overview.mdx index 01c3696a..159534f6 100644 --- a/apps/docs/content/rust/overview.mdx +++ b/apps/docs/content/rust/overview.mdx @@ -28,6 +28,11 @@ As said, there is no need for coding yet, we have created a [Github repository ```yml project: name: my-first-project + # Project mode (LIGHT or SERIOUS) + # The default is LIGHT, so it is not necessary to explicitly include it. + mode: LIGHT + tags: + - zerops-recipe services: - hostname: helloworld type: rust@latest