Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Project Core Package(Wip) #124

Draft
wants to merge 2 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions apps/docs/content/bun/how-to/create.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
3 changes: 3 additions & 0 deletions apps/docs/content/bun/overview.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +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

Expand Down
6 changes: 6 additions & 0 deletions apps/docs/content/deno/how-to/create.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
3 changes: 3 additions & 0 deletions apps/docs/content/deno/overview.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
6 changes: 6 additions & 0 deletions apps/docs/content/dotnet/how-to/create.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
10 changes: 10 additions & 0 deletions apps/docs/content/dotnet/overview.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
3 changes: 3 additions & 0 deletions apps/docs/content/elasticsearch/how-to/create.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 6 additions & 0 deletions apps/docs/content/elixir/how-to/create.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
3 changes: 3 additions & 0 deletions apps/docs/content/elixir/overview.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
6 changes: 6 additions & 0 deletions apps/docs/content/gleam/how-to/create.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
3 changes: 3 additions & 0 deletions apps/docs/content/gleam/overview.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
6 changes: 6 additions & 0 deletions apps/docs/content/go/how-to/create.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
5 changes: 5 additions & 0 deletions apps/docs/content/go/overview.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
5 changes: 5 additions & 0 deletions apps/docs/content/go/tutorial/quickstart.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 6 additions & 0 deletions apps/docs/content/java/how-to/create.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
5 changes: 5 additions & 0 deletions apps/docs/content/java/overview.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
3 changes: 3 additions & 0 deletions apps/docs/content/keydb/how-to/create.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
3 changes: 3 additions & 0 deletions apps/docs/content/mariadb/how-to/create.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 6 additions & 0 deletions apps/docs/content/nginx/how-to/create.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
5 changes: 5 additions & 0 deletions apps/docs/content/nginx/tutorial/quickstart.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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: [email protected]+2.4
Expand Down
6 changes: 6 additions & 0 deletions apps/docs/content/nodejs/how-to/create.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
3 changes: 3 additions & 0 deletions apps/docs/content/nodejs/overview.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
6 changes: 6 additions & 0 deletions apps/docs/content/php/how-to/create.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
5 changes: 5 additions & 0 deletions apps/docs/content/php/overview.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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: [email protected]+2.4
Expand Down
6 changes: 6 additions & 0 deletions apps/docs/content/python/how-to/create.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
Loading
Loading