Skip to content

Commit 3b4908b

Browse files
committed
initial commit
0 parents  commit 3b4908b

File tree

206 files changed

+426138
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

206 files changed

+426138
-0
lines changed

.gitignore

Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
# If you prefer the allow list template instead of the deny list, see community template:
2+
# https://github.com/github/gitignore/blob/main/community/Golang/Go.AllowList.gitignore
3+
#
4+
# Binaries for programs and plugins
5+
*.exe
6+
*.exe~
7+
*.dll
8+
*.so
9+
*.dylib
10+
11+
# Test binary, built with `go test -c`
12+
*.test
13+
14+
# Output of the go coverage tool, specifically when used with LiteIDE
15+
*.out
16+
17+
# Dependency directories (remove the comment below to include it)
18+
# vendor/
19+
20+
# Go workspace file
21+
go.work
22+
go.work.sum
23+
24+
# env file
25+
.env
26+
.vscode/
27+
**/node_modules
28+
**/dist
29+
.yarn/*
30+
!.yarn/patches
31+
!.yarn/plugins
32+
!.yarn/releases
33+
!.yarn/sdks
34+
!.yarn/versions
35+
**/public/_remotes
36+
.devspace
37+
38+
hack/release-modify/release.yaml
39+
testing/config.yaml
40+
41+
# 忽略 coderepos 下的所有内容
42+
testing/features/testdata/coderepos/*
43+
44+
# 不忽略 .tgz 文件
45+
!testing/features/testdata/coderepos/Makefile
46+
!testing/features/testdata/coderepos/*.tgz
47+
48+
bin
49+
imported-docs
50+
51+
testing/allure-report/
52+
testing/allure-results/
53+

.yarn/releases/yarn-4.9.2.cjs

Lines changed: 942 additions & 0 deletions
Large diffs are not rendered by default.

.yarnrc.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
enableTelemetry: false
2+
3+
nodeLinker: node-modules
4+
5+
npmRegistryServer: "https://registry.npmmirror.com"
6+
7+
yarnPath: .yarn/releases/yarn-4.9.2.cjs

README.md

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
# Alauda DevOps Pipelines Docs
2+
3+
This repository contains the documentation for the Alauda DevOps Pipelines Operator.
4+
5+
## Getting Started
6+
7+
### Prerequisites
8+
9+
Before you begin, make sure you have the following installed on your system:
10+
11+
- **[Node.js](https://nodejs.org/en/)** (version 14 or higher recommended)
12+
- **[npm](https://www.npmjs.com/)** (comes with Node.js)
13+
- **[Yarn](https://yarnpkg.com/)** package manager
14+
15+
### Installation
16+
17+
1. Clone this repository and navigate to the project directory
18+
2. Install project dependencies:
19+
20+
```bash
21+
yarn install
22+
```
23+
24+
### Recommended Development Setup
25+
26+
For the best development experience, we recommend:
27+
28+
- **Editor**: [Visual Studio Code](https://code.visualstudio.com/)
29+
- **Extension**: [MDX extension](https://marketplace.visualstudio.com/items?itemName=unifiedjs.vscode-mdx) for enhanced markdown editing
30+
31+
## Development Commands
32+
33+
| Command | Description |
34+
|---------|-------------|
35+
| `yarn dev` | Start development server with hot reload |
36+
| `yarn build` | Build production-ready static files |
37+
| `yarn serve` | Preview built files locally |
38+
39+
### Development Workflow
40+
41+
1. **Start development**: Run `yarn dev` to launch the local server
42+
2. **Edit content**: Make changes to your markdown files - they'll update automatically
43+
3. **Navigation changes**: If you modify the sidebar navigation, restart the development server
44+
4. **Preview production**: Use `yarn build` followed by `yarn serve` to test the final build
45+
46+
> **💡 Tip**: The development server supports hot reloading for most changes, making your workflow smooth and efficient!

docs/en/.gitkeep

Whitespace-only changes.
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
weight: 30
3+
---
4+
5+
# Advanced APIs
6+
7+
<Overview overviewHeaders={[]} />
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
---
2+
weight: 20
3+
i18n:
4+
title:
5+
en: Results
6+
sourceSHA: 309f1a9373dac81cd438b1b4b9eea0fdcc06aec0b3d35614336d2c0e67b877cd
7+
title: Results
8+
---
9+
10+
# Results
11+
12+
<Overview overviewHeaders={[]} />

0 commit comments

Comments
 (0)