init: 初始化项目

This commit is contained in:
zhaoyingbo 2024-03-05 09:52:36 +00:00
commit bd62123551
10 changed files with 180 additions and 0 deletions

View File

@ -0,0 +1,32 @@
{
"name": "ci_monitor",
"image": "micr.cloud.mioffice.cn/zhaoyingbo/dev:bun",
"remoteUser": "bun",
"containerUser": "bun",
"customizations": {
"vscode": {
"settings": {
"files.autoSave": "off",
"editor.guides.bracketPairs": true,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.fixAll.stylelint": true
}
},
"extensions": [
"dbaeumer.vscode-eslint",
"esbenp.prettier-vscode",
"eamodio.gitlens",
"unifiedjs.vscode-mdx",
"oderwat.indent-rainbow",
"jock.svg",
"ChakrounAnas.turbo-console-log",
"Gruntfuggly.todo-tree",
"MS-CEINTL.vscode-language-pack-zh-hans",
"stylelint.vscode-stylelint",
"Alibaba-Cloud.tongyi-lingma"
]
}
}
}

1
.gitattributes vendored Normal file
View File

@ -0,0 +1 @@
*.lockb binary diff=lockb

58
.gitignore vendored Normal file
View File

@ -0,0 +1,58 @@
# Logs
logs
*.log
npm-debug.log*
# Runtime data
pids
*.pid
*.seed
# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov
# Coverage directory used by tools like istanbul
coverage
# nyc test coverage
.nyc_output
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
.grunt
# node-waf configuration
.lock-wscript
# Compiled binary addons (http://nodejs.org/api/addons.html)
build/Release
# Dependency directories
node_modules
jspm_packages
# Optional npm cache directory
.npm
# Optional REPL history
.node_repl_history
# 0x
profile-*
# mac files
.DS_Store
# vim swap files
*.swp
# webstorm
.idea
# vscode
.vscode
*code-workspace
# clinic
profile*
*clinic*
*flamegraph*

BIN
bun.lockb Executable file

Binary file not shown.

8
db/pb.ts Normal file
View File

@ -0,0 +1,8 @@
import PocketBase from "pocketbase";
const pb = new PocketBase("https://ci-pb.xiaomiwh.cn");
export const getTenantAccessToken = async () => {
const { value } = await pb.collection("config").getOne("ugel8f0cpk0rut6");
return value;
};

0
index.ts Normal file
View File

19
package.json Normal file
View File

@ -0,0 +1,19 @@
{
"name": "ci_monitor",
"module": "index.ts",
"type": "module",
"scripts": {
"start": "bun run index.ts"
},
"devDependencies": {
"bun-types": "latest"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"dependencies": {
"@types/node-schedule": "^2.1.6",
"node-schedule": "^2.1.1",
"pocketbase": "^0.21.1"
}
}

1
readme.md Normal file
View File

@ -0,0 +1 @@
# CI 监控

39
service/test.ts Normal file
View File

@ -0,0 +1,39 @@
const fetchProjectDetails = async () => {
const response = await fetch(
"https://git.n.xiaomi.com/api/v4/projects/131366",
{
method: "GET",
headers: { "PRIVATE-TOKEN": "Zd1UASPcMwVox5tNS6ep" },
}
);
const body = await response.json();
console.log(body);
};
const fetchPipelineDetails = async () => {
const response = await fetch(
"https://git.n.xiaomi.com/api/v4/projects/131366/pipelines/7646046",
{
method: "GET",
headers: { "PRIVATE-TOKEN": "Zd1UASPcMwVox5tNS6ep" },
}
);
const body = await response.json();
console.log(body);
};
const fetchPipelines = async () => {
const response = await fetch(
"https://git.n.xiaomi.com/api/v4/projects/131366/pipelines",
{
method: "GET",
headers: { "PRIVATE-TOKEN": "Zd1UASPcMwVox5tNS6ep" },
}
);
const body = await response.json();
console.log(body);
};
// fetchPipelines();
// fetchPipelineDetails();
fetchProjectDetails();

22
tsconfig.json Normal file
View File

@ -0,0 +1,22 @@
{
"compilerOptions": {
"lib": ["ESNext"],
"module": "esnext",
"target": "esnext",
"moduleResolution": "bundler",
"moduleDetection": "force",
"allowImportingTsExtensions": true,
"noEmit": true,
"composite": true,
"strict": true,
"downlevelIteration": true,
"skipLibCheck": true,
"jsx": "react-jsx",
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
"allowJs": true,
"types": [
"bun-types" // add Bun global
]
}
}