Browse Source

Merge commit '908bdfb6daa72825ac08fc1d93db9cacf9504653'

liuyuqi-dellpc 10 months ago
parent
commit
901d2a75f3

+ 61 - 0
.github/ISSUE_TEMPLATE/bug_report.yml

@@ -0,0 +1,61 @@
+name: Report Bug | 报告BUG
+description: "Report bug"
+title: "[Bug]: "
+labels: []
+body:
+  - type: dropdown
+    id: download
+    attributes:
+      label: Installation Method | 安装方法与平台
+      options:
+        - Please choose | 请选择
+        - Pip Install (I ignored requirements.txt)
+        - Pip Install (I used latest requirements.txt)
+    validations:
+      required: true
+
+  - type: dropdown
+    id: version
+    attributes:
+      label: Version | 版本
+      options:
+        - Please choose | 请选择
+        - Latest | 最新版
+        - Others | 非最新版
+    validations:
+      required: true
+
+  - type: dropdown
+    id: os
+    attributes:
+      label: OS | 操作系统
+      options:
+        - Please choose | 请选择
+        - Windows
+        - Mac
+        - Linux
+        - Docker
+    validations:
+      required: true
+
+  - type: textarea
+    id: describe
+    attributes:
+      label: Describe the bug | 简述
+      description: Describe the bug | 简述
+    validations:
+      required: true
+
+  - type: textarea
+    id: screenshot
+    attributes:
+      label: Screen Shot | 有帮助的截图
+      description: Screen Shot | 有帮助的截图
+    validations:
+      required: true
+
+  - type: textarea
+    id: traceback
+    attributes:
+      label: Terminal Traceback & Material to Help Reproduce Bugs | 终端traceback(如有) + 帮助我们复现的测试材料样本(如有)
+      description: Terminal Traceback & Material to Help Reproduce Bugs | 终端traceback(如有) + 帮助我们复现的测试材料样本(如有)

+ 23 - 0
.github/ISSUE_TEMPLATE/feature_request.yml

@@ -0,0 +1,23 @@
+name: Feature Request | 功能请求
+description: "Feature Request"
+title: "[Feature]: "
+labels: []
+body:
+  - type: dropdown
+    id: download
+    attributes:
+      label: Class | 类型
+      options:
+        - Please choose | 请选择
+        - 其他
+        - 函数插件
+        - 大语言模型
+        - 程序主体
+    validations:
+      required: false
+
+  - type: textarea
+    id: traceback
+    attributes:
+      label: Feature Request | 功能请求
+      description: Feature Request | 功能请求

+ 25 - 0
.github/workflows/stale.yml

@@ -0,0 +1,25 @@
+# This workflow warns and then closes issues and PRs that have had no activity for a specified amount of time.
+#
+# You can adjust the behavior by modifying this file.
+# For more information, see:
+# https://github.com/actions/stale
+
+name: 'Close stale issues and PRs'
+on:
+  schedule:
+    - cron: '*/5 * * * *'
+
+jobs:
+  stale:
+    runs-on: ubuntu-latest
+    permissions:
+      issues: write
+      pull-requests: read
+
+    steps:
+      - uses: actions/stale@v8
+        with:
+          stale-issue-message: 'This issue is stale because it has been open 100 days with no activity. Remove stale label or comment or this will be closed in 1 days.'
+          days-before-stale: 100
+          days-before-close: 1
+          debug-only: true

+ 11 - 1
docs/README.md

@@ -9,7 +9,17 @@
 
 ## License
 
-
+Apache 2.0
 
 ## Reference
 
+github docs
+
+coding docs
+
+gogs docs
+
+gitlab docs
+
+azure pipeline docs
+

+ 6 - 5
docs/_sidebar.md

@@ -3,20 +3,20 @@
   * [前言](README.md)
 
 * IDE
-  
+
     * [Codespaces](ide/codespaces.md)
     * [Coding](ide/coding.md)
     * [Gitpod](ide/gitpod.md)
 
 * CI/CD
-  
+
     * [Azure pipeline](cicd/auzre_pipeline.md)
     * [Gitee](cicd/gitee.md)
     * [Github action](cicd/github_aciton.md)
     * [Gitlab ci](cicd/gitlab_ci.md)
 
 * 编程语言
-  
+
     * [Flutter 开发](dev/flutter.md)
     * [Go](dev/go.md)
     * [PHP](dev/php.md)
@@ -25,9 +25,10 @@
     * [Nodejs开发](dev/nodejs.md)
 
 * AI
-  
+
   * [Hugging Face 镜像](ai.md)
 
 * 其他
 
-  * [其他](others.md)
+  * [其他](others.md)
+

+ 20 - 0
docs/ai.md

@@ -13,3 +13,23 @@ Repo that allows me to build AI tools on top of Hugging Face
 * `numba -s | grep cuda`
 * run `python utils/verify_cuda_pytorch.py`
 * run `nvidia-smi` should show a GPU
+
+
+## Dev Container
+
+用一个python3环境即可,安装aconda,jupyter notebook,tensorflow,pytorch等, VSCode安装相应的扩展,Nvidia
+```bash
+ai\.devcontainer\Dockerfile
+```
+FROM mcr.microsoft.com/vscode/devcontainers/python:0-${VARIANT}
+
+```
+
+## AI Image
+
+镜像一般都比较大
+
+
+环境配置
+
+环境一般通过 requirements.txt(pip), pyproject.toml (poetry), environment.yml(conda) 管理依赖。

+ 93 - 0
docs/cicd/auzre_pipeline.md

@@ -1,5 +1,98 @@
 # Azure Pipeline
 
+Azure Pipelines 和 Github Action一样,支持各种语言,各种平台(windows,linux,mac),自动部署到各云平台,开源项目10个免费无线分钟数。
+
+
+
+## Usage
+
 项目添加 `.azure-pipelines/azure-pipelines.yml`,
 
+```
+trigger:
+- main
+
+variables:
+  # Azure Resource Manager connection created during pipeline creation
+  azureSubscription: 'subscription-id'
+  # Web app name
+  webAppName: 'web-app-name'
+  # Agent VM image name
+  vmImageName: 'ubuntu-latest'
+  # Environment name
+  environmentName: 'environment-name'
+  # Root folder under which your composer.json file is available.
+  rootFolder: $(System.DefaultWorkingDirectory)
+
+stages:
+- stage: Build
+  displayName: Build stage
+  variables:
+    phpVersion: '7.4'
+  jobs:
+  - job: BuildJob
+    pool:
+      vmImage: $(vmImageName)
+    steps:
+    - script: |
+        sudo update-alternatives --set php /usr/bin/php$(phpVersion)
+        sudo update-alternatives --set phar /usr/bin/phar$(phpVersion)
+        sudo update-alternatives --set phpdbg /usr/bin/phpdbg$(phpVersion)
+        sudo update-alternatives --set php-cgi /usr/bin/php-cgi$(phpVersion)
+        sudo update-alternatives --set phar.phar /usr/bin/phar.phar$(phpVersion)
+        php -version
+      workingDirectory: $(rootFolder)
+      displayName: 'Use PHP version $(phpVersion)'
+
+    - script: composer install --no-interaction --prefer-dist
+      workingDirectory: $(rootFolder)
+      displayName: 'Composer install'
+
+    - task: ArchiveFiles@2
+      displayName: 'Archive files'
+      inputs:
+        rootFolderOrFile: '$(rootFolder)'
+        includeRootFolder: false
+        archiveType: zip
+        archiveFile: $(Build.ArtifactStagingDirectory)/$(Build.BuildId).zip
+        replaceExistingArchive: true
+
+    - upload: $(Build.ArtifactStagingDirectory)/$(Build.BuildId).zip
+      displayName: 'Upload package'
+      artifact: drop
+
+- stage: Deploy
+  displayName: 'Deploy Web App'
+  dependsOn: Build
+  condition: succeeded()
+  jobs:
+  - deployment: DeploymentJob
+    pool:
+      vmImage: $(vmImageName)
+    environment: $(environmentName)
+    strategy:
+      runOnce:
+        deploy:
+          steps:
+          - task: AzureWebApp@1
+            displayName: 'Deploy Azure Web App'
+            inputs:
+              azureSubscription: $(azureSubscription)
+              appName: $(webAppName)
+              package: $(Pipeline.Workspace)/drop/$(Build.BuildId).zip
+```
+
+注意其中指定 php 版本,安装依赖,部署等
+
+
+
+## AppCenter
+
+
+
+## Reference
+
+[Azure Pipelines | Microsoft Azure](https://azure.microsoft.com/en-us/products/devops/pipelines)
+
+[Azure Pipelines documentation - Azure DevOps | Microsoft Learn](https://learn.microsoft.com/en-us/azure/devops/pipelines/?view=azure-devops)
 

+ 18 - 0
docs/cicd/cloud_build.md

@@ -0,0 +1,18 @@
+# Cloud Build
+
+Cloud Build 是 google 项目构建平台,每月2500分钟=41小时/月,2核,8G配置。
+
+
+
+## Usage
+
+
+
+
+
+
+
+## Reference
+
+[使用 Cloud Build 自动构建  |  Cloud Source Repositories 文档  |  Google Cloud](https://cloud.google.com/source-repositories/docs/integrating-with-cloud-build?hl=zh-cn)
+

+ 0 - 2
docs/cicd/gitee.md

@@ -1,2 +0,0 @@
-# gitee
-

+ 12 - 0
docs/cicd/gitlab_ci.md

@@ -2,3 +2,15 @@
 
 
 
+## 介绍
+
+
+
+## Usage
+
+
+
+
+
+
+

+ 35 - 1
docs/dev/dotnet.md

@@ -1,8 +1,42 @@
+# Dotnet
+
+.net 也支持跨平台,可以在windows,mac,linux等平台运行,一般做 aspx web项目。
+
+.net core 3.1 之后,改名为 .net 5,支持更多的平台,如 arm64,wasm等。
+
 ## dotnet action
 
 实现自动构建项目,生成可执行包。签名,上传到 github package 。
 
+配置 `dotnet\.github\workflows\main.yml`:
+```
+        - name: Setup .NET Core SDK
+          uses: actions/setup-dotnet@v1
+          with:
+            dotnet-version: 3.1.100
+
+        - uses: actions/cache@v2
+          with:
+            path: ~/.nuget/packages
+            key: ${{ runner.os }}-nuget-${{ hashFiles('**/packages.lock.json') }}
+            restore-keys: |
+              ${{ runner.os }}-nuget-
+```
+
+打包
+```
+
+```
 
 ## vs构建
 
-传统 C++,C# 等桌面exe项目,使用:`msbuild.yml` 自动构建
+传统 C++,C# 等桌面exe项目,使用:`msbuild.yml` 自动构建
+
+
+
+
+## C/C++
+
+C/C++项目编译,
+
+

+ 82 - 42
docs/dev/flutter.md

@@ -12,12 +12,64 @@ FROM jianboy/flutter-dev-container:3.13.5
 
 ## Develop
 
+锁定版本:
+
+```
+flutter 2.0.5
+dart 2.12.3
+gradle 7.4-all
+java   17
+kotlin 1.7.10
+android sdk  33
+```
+
+```
+flutter 3.7.12
+dart 2.19.6
+gradle 7.4-all
+java   17
+kotlin 1.7.10
+android sdk  21-33
+```
+
+```
+flutter 3.19.6
+dart
+gradle tool 7.2.2 gradle-7.5-all.zip
+java   17.0.11-ms
+21.0.1-ms
+11.0.23-ms
+
+kotlin 1.7.10
+android sdk  21-33
+
+```
+
+coding 目前在用的版本:
+
+```
+sift-docker.pkg.coding.net/flutter-team/dev-container/dev-allinone:1.0.9-flutter
+```
+支持flutter开发
+
+```
+sift-docker.pkg.coding.net/flutter-team/dev-container/dev-allinone:1.0.11-flutter
+```
+支持 flutter 开发
+更新 python3 支持,环境变量添加到.bashrc
+
+
+Codespaces在用的版本:
+
+codespaces默认环境就集成了众多开发语言,但是不包含flutter,为此只需要未flutter创建容器即可:
 ```
 docker login --username jianboy
 docker build  -f .devcontainer/Dockerfile2 -t jianboy/flutter-dev-container:3.13.5 .
 docker push jianboy/flutter-dev-container:3.13.5
 
 ```
+已知问题:无法使用docker,无其他环境
+
 
 构建 apk
 ```
@@ -54,18 +106,9 @@ rclone 同步apk
 ```
 
 
-## 构建 flutter Android 项目
-
-## 构建 flutter IOS 项目
-
-本章介绍通过github托管代码,每次提交代码,github action自动触发构建,发布IOS。
-
-### 步骤
+## GitHub Action ipa:
 
-* 安装 Apple证书
-* 构建App
-* 签名
-* 发布
+本章介绍通过 github 托管代码,每次提交代码,github action 自动触发构建ipa,发布IOS。
 
 ### 安装 Apple 证书
 
@@ -82,8 +125,7 @@ P12_PASSWORD
     p12-password: ${{ secrets.P12_PASSWORD }}
 ```
 
-
-# Android studio 构建apk
+## Github Action 构建发布 apk
 
 包含初始化安卓环境,构建,推送消息,提交,上传到应用商店等等
 
@@ -109,55 +151,53 @@ docker push
 
 ```
 
-# dev
 
-基于 docker 快速切换版本开发环境
 
-## nodejs
+## Jenkins
 
-如,项目需要在node14环境下开发,可以使用以下方式:
+通过docker快速启动一个 Jenkins 服务,配置好环境,插件,构建任务,即可实现自动化构建,部署,通知等功能。
 
 ```
-docker run --rm -it -v /workspace:/app node:14 /bin/bash
-
+docker run -d -p 8080:8080 -p 50000:50000 -v /var/jenkins_home:/var/jenkins_home jenkins/jenkins:lts
 ```
 
--v /workspace:/app 挂载本地目录到容器内,/workspace 为本地目录,/app 为容器内目录
+配置文件`android-studio\Jenkinsfile`
 
-### 额外配置
+## travis
 
-有时候,项目需要一些额外开发环境,可以新建一个 Dockerfile 文件,构建一个本地镜像
-    
-```Dockerfile
-FROM node:14
-WORKDIR /app
-# todo
-```
+travis是比较早的ci/cd平台,通过 travis-ci 实现自动化构建,部署,通知等功能。主要提供php,nodejs,python等语言的支持,目前是收费的。
 
-然后使用该镜像启动容器:
-```
-docker build -t jianboy/node-hexo:14 .
+配置 `android-studio\.travis.yml`
 
-docker run --rm -it -v /workspace:/app node:14 /bin/bash
 
-```
+## fastlane
 
+## AppCenter
 
+## Gitpod
 
-## python
-
-如,项目需要在python3.8环境下开发,可以使用以下方式:
+通过 `.gitpod.yml`和 `.gitpod.Dockfile` 配置开发环境,实现远程开发。
 
 ```
-docker run --rm -it -v /workspace:/app python:3.8 /bin/bash
+FROM gitpod/workspace-full-vnc
 
 ```
+容器包含 VNC 服务,可以通过浏览器访问远程桌面,在做桌面开发十分有效。
 
-## golang
+此外提供了很多开发环境,如 nodejs,python,java,go,rust等等,可以安装 Chrome 浏览器,远程连接 adb。
 
-如,项目需要在golang1.15环境下开发,可以使用以下方式:
+## Gitlab CI
 
-```
-docker run --rm -it -v /workspace:/app golang:1.15 /bin/bash
+配置 `.gitlab-ci.yml` 文件,实现自动化构建,部署,通知等功能。
 
-```
+
+## Azure DevOps
+
+一般用来开发微软相关的项目,如.net,azure等,提供windows,linux,mac主机构建,。
+
+配置 `dotnet\azure-pipelines.yml`
+
+
+## circleci
+
+## bitrise

+ 25 - 8
docs/dev/go.md

@@ -1,23 +1,28 @@
-# go 构建
+# Go 构建
 
+如,项目需要在golang1.19环境下开发,可以使用以下方式:
+
+```
+docker run --rm -it -v /workspace:/app golang:1.19 /bin/bash
+go build
+```
+
+此外,开发环境还有其他配置,如镜像加速,开发依赖,可以打包一个镜像替代golang:1.19:
 
 ```
 # 构建镜像
-docker build -t jianboy/go-build:1.20 .
-docker run -it --rm -v /workspace/caddy:/workspaces jianboy/go-build:1.20
+docker build --pull --rm -f "Dockerfile-build"-t jianboy/go-build:1.20 .
 
+# 别名 go 命令,执行 go 命令,启动开发容器,并传递参数进容器
 alias go='docker run -it --rm -v /workspace/caddy:/workspaces jianboy/go-build:1.20'
 
 # 构建项目
 git clone https://github.com/caddyserver/caddy
-docker run -it --rm -v /workspace:/workspaces jianboy/go-build:1.20
-cd caddy/cmd/caddy/
-go build -o caddy
 
+docker run -it --rm -v /workspace/caddy:/workspaces jianboy/go-build:1.20
+cd caddy/cmd/caddy/
 GOOS=windows GOARCH=amd64 CGO_ENABLED=0 go build -o caddy
 
-docker build -t jianboy/go-build:1.21 .
-
 git clone https://gitee.com/dromara/mayfly-go
 docker run -it --rm -v /workspace/mayfly-go/server:/workspaces jianboy/go-build:1.21
 
@@ -28,3 +33,15 @@ GO111MODULE=on CGO_ENABLED=0 GOOS=linux \
 
 ```
 
+## 跨平台编译
+
+Go 语言支持跨平台交叉编译,即在linux就可以编译linux,windows,Android,mac等多平台二进制文件。
+
+
+## Github Action 自动构建,发布,通知
+
+### 自动构建
+
+### 发布
+
+### 通知

+ 32 - 2
docs/dev/nodejs.md

@@ -1,10 +1,40 @@
 # nodejs
 
-nodejs开发,包括vue,react,angular,node服务端,桌面开发等
+nodejs 开发,包括vue,react,angular,node服务端,桌面开发等
+
+
+如,项目需要在 node14 环境下开发,可以使用以下方式:
+
+```
+docker run --rm -it -v /workspace:/app node:14 /bin/bash
+
+```
+
+-v /workspace:/app 挂载本地目录到容器内,/workspace 为本地目录,/app 为容器内目录
+
+### 额外配置
+
+有时候,项目需要一些额外开发环境,可以新建一个 Dockerfile 文件,构建一个本地镜像
+    
+```Dockerfile
+FROM node:14
+WORKDIR /app
+# todo
+```
+
+然后使用该镜像启动容器:
+```
+docker build -t jianboy/node-hexo:14 .
+
+docker run --rm -it -v /workspace:/app node:14 /bin/bash
+
+```
+
+
 
 ## Dockerfile
 
-常见的 vue 等前后端分离项目,buider 层构建,再用base层运行。排除不必要的构建环境。
+常见的 vue 等前后端分离项目,buider 层构建,再用 base 层运行。排除不必要的构建环境。
 
 ## Dockerfile-front-backend
 

+ 14 - 0
docs/dev/others.md

@@ -0,0 +1,14 @@
+# Others
+
+
+
+## Rust
+
+
+
+## Ruby
+
+mkdir -p php-demo
+chmod 777 php-demo && cd php-demo
+docker run --rm -it -w /var/www/html -v $(pwd):/var/www/html -p 8000:8000 groovy:jdk17-alpine /bin/bash
+cd /var/www/html

+ 52 - 2
docs/dev/php.md

@@ -1,9 +1,51 @@
 # php 开发
 
-基于 docker,快速切换 php 版本开发环境,如,项目需要在 php7.4 环境下开发,可以使用以下方式:
+基于 docker ,快速切换 php 版本开发环境,如,项目需要在 php7.4 环境下开发,可以使用以下方式:
 
 ```bash
-docker run --rm -it -v /workspace:/app php:7.4 /bin/bash
+
+chmod -R 777 .
+docker run --rm -it -v $(pwd):/var/www/html -p 9000:80 php:8.3.6-apache
+docker run --rm -it -v $(pwd):/var/www/html -p 9000:80 php:8.1.8-apache
+
+docker run --rm -it -v $(pwd):/var/www/html -p 9000:80 php:7.4.27-apache
+
+docker run --rm -it -v $(pwd):/var/www/html -p 9000:80 php:5.6.38-apache
+
+```
+
+开发环境需要 composer,启动下面容器即可:
+```bash
+#php8+xdebug+composer
+mkdir -p php-demo
+chmod 777 php-demo && cd php-demo
+docker run --rm -it -w /var/www/html -v $(pwd):/var/www/html -p 8000:8000 sineverba/php8xc:1.18.0 /bin/bash
+cd /var/www/html
+```
+
+laravel 项目使用下面容器,可以添加 `docker-compose.yaml` 配置一并启动数据库:
+```
+# https://hub.docker.com/r/bitnami/laravel
+docker run --rm -it -v $(pwd):/app -p 8000:8000 bitnami/laravel:latest
+
+
+docker run -d --name laravel \
+  -p 8000:8000 \
+  --env DB_HOST=mariadb \
+  --env DB_PORT=3306 \
+  --env DB_USERNAME=bn_myapp \
+  --env DB_DATABASE=bitnami_myapp \
+  --network laravel-network \
+  --volume ${PWD}/my-project:/app \
+  bitnami/laravel:latest
+
+```
+
+php 命令行项目工具:
+```
+docker run --rm -it -w /var/www/html -v $(pwd):/var/www/html -v $(pwd)/Downloads:/root/Downloads/MusicDL/ -p 9000:80 php:8.1.8-apache /bin/bash
+
+docker run --rm -it -w /var/www/html -v /workspace:/app php:7.4 /bin/bash
 
 thinkphp new demo
 thinkphp serve
@@ -60,3 +102,11 @@ docker run --rm -it -v /workspace:/app composer:latest /bin/bash
 
 composer create-project --prefer-dist yiisoft/yii2-app-basic demo
 ```
+
+## 数据库
+
+通过docker快速启动一个测试数据库:
+
+```
+
+```

+ 34 - 1
docs/dev/python.md

@@ -1,8 +1,17 @@
 # python
 
+如,项目需要在 python3.8 环境下开发,可以使用以下方式:
 
-# Deploy
+```
+docker run --rm -it -v /workspace:/app python:3.8 /bin/bash
 
+```
+
+python环境编译较慢,为此最佳的方式pull镜像
+
+
+
+## 前后端分离部署方案
 
 部署的方法很多
 
@@ -25,3 +34,27 @@
 ## docker-compose 部署
 
 前端 + nginx 启动一个容器,后端 python.py 启动一个容器,数据库,redis等分别启动一个容器。
+
+
+```
+FROM python:3.8
+#FROM node:14
+# FROM mcr.microsoft.com/devcontainers/universal:2
+
+# install vscode and extension
+RUN curl -fsSL https://code-server.dev/install.sh | sh &&\
+    code-server --install-extension redhat.vscode-yaml &&\
+    code-server --install-extension orta.vscode-jest &&\
+    code-server --install-extension dbaeumer.vscode-eslint &&\
+    code-server --install-extension eamodio.gitlens &&\
+    echo done
+
+#     code-server  --install-extension ms-python.python &&\  很慢,无法安装
+# 安装 ssh 服务,用于支持 Vscode 客户端通过 Remote-SSH 访问开发环境
+# (如果需要支持客户端打开远程开发环境可安装)
+RUN apt-get update && apt-get install -y wget unzip openssh-server
+
+# 指定字符集支持命令行输入中文(根据需要选择字符集)
+ENV LANG C.UTF-8
+ENV LANGUAGE C.UTF-8
+```

+ 4 - 0
docs/ide/codespaces.md

@@ -33,5 +33,9 @@ Github 60小时/月免费开发环境,支持远程容器开发,Vscode。注
 
 
 
+## Usage
+
+
+
 
 

+ 7 - 1
docs/ide/gitpod.md

@@ -1,6 +1,6 @@
 # gitpod
 
-最早的远程开发平台,配置较高,50 小时/月免费,添加 `gitpod` 配置文件 `.gitpod.yml`,内容如下:
+Gitpod是最早的远程开发平台,配置较高,50 小时/月免费,很容易用完。添加配置文件 `.gitpod.yml` 和 `.gitpod.Dockerfile`,内容如下:
 
 ```yaml
 image:
@@ -16,3 +16,9 @@ tasks:
         command: npm run dev
 ```
 
+
+
+
+
+
+

+ 13 - 5
docs/index.html

@@ -21,6 +21,12 @@
       loadSidebar: true,
       themeColor: '#3F51B5',
       ahto2top: true,
+      pagination: {
+        previousText: '上一篇',
+        nextText: '下一篇',
+        crossChapter: true,
+        crossChapterText: true,
+      },
       plugins: [
         function (hook, vm) {
           hook.beforeEach(function (content) {
@@ -31,11 +37,13 @@
   </script>
   <!-- Docsify v4 -->
   <script src="https://lf9-cdn-tos.bytecdntp.com/cdn/expire-1-M/docsify/4.12.2/docsify.min.js"></script>
-   <!-- <script src="//unpkg.com/docsify/lib/plugins/search.js"></script>
-   <script src="//unpkg.com/prismjs/components/prism-bash.js"></script>
-   <script src="//unpkg.com/docsify/lib/plugins/emoji.js"></script>
-   <script src="//unpkg.com/docsify-copy-code"></script>
-   <script src="//unpkg.com/docsify/lib/plugins/ga.js"></script> -->
+  <script
+    src="https://cdn-doocs.oss-cn-shenzhen.aliyuncs.com/npm/docsify-copy-code@2.1.1/dist/docsify-copy-code.min.js"></script>
+  <script src="https://cdn-doocs.oss-cn-shenzhen.aliyuncs.com/npm/docsify/lib/plugins/search.min.js"></script>
+  <script
+    src="https://cdn-doocs.oss-cn-shenzhen.aliyuncs.com/npm/docsify-pagination/dist/docsify-pagination.min.js"></script>
+  <script src="https://cdn-doocs.oss-cn-shenzhen.aliyuncs.com/npm/docsify-katex@latest/dist/docsify-katex.js"></script>
+
 </body>
 
 </html>

+ 83 - 3
docs/others.md

@@ -1,17 +1,63 @@
 # other
 
-下面收集一下其他使用 GitHub action 
+本章将介绍如何使用 github action 实现自动化操作,如自动签到、issue 机器人、pull request 机器人等。
+
+## 有趣的 Github Action
 
 米游社原神自动每日签到  https://github.com/y1ndan/genshin-impact-helper 
 
 
+
 ## github ISSUE_TEMPLATE
 
-项目配置 `.github\ISSUE_TEMPLATE\bug_report_cn.md` 即可
+项目配置 `.github\ISSUE_TEMPLATE\bug_report_cn.md` 用户提交 issue 时自动渲染模板即
+
+**issue form 模板**
+
+Github 最新推出了 issue 模板功能,可以在 `.github/ISSUE_TEMPLATE` 目录下创建yml 模板文件,当用户新建 issue 时,会自动渲染模板内容。
+
+相比较于 issue 模板,issue form 模板更加灵活,可以根据用户输入的内容,自动触发事件。
+
+```yml
+name: Report Bug | 报告BUG
+description: "Report bug"
+title: "[Bug]: "
+labels: []
+body:
+  - type: dropdown
+    id: download
+    attributes:
+      label: Installation Method | 安装方法与平台
+      options:
+        - Please choose | 请选择
+        - Pip Install (I ignored requirements.txt)
+        - Pip Install (I used latest requirements.txt)
+        - OneKeyInstall (一键安装脚本-windows)
+        - OneKeyInstall (一键安装脚本-mac)
+        - Anaconda (I ignored requirements.txt)
+        - Anaconda (I used latest requirements.txt)
+        - Docker(Windows/Mac)
+        - Docker(Linux)
+        - Docker-Compose(Windows/Mac)
+        - Docker-Compose(Linux)
+        - Huggingface
+        - Others (Please Describe)
+    validations:
+      required: true
+
+```
+其中 type 为输入框类型(dropdown, textarea),id 为输入框 id,label 为输入框标题,options 为下拉框选项。
+
+https://docs.github.com/en/communities/using-templates-to-encourage-useful-issues-and-pull-requests/configuring-issue-templates-for-your-repository#creating-issue-forms
+
+
+```yml
 
 ## issue 机器人
 
-根据操作自动回复,自动触发事件。如 issue 标记未 duplicate 自动关闭; 如果 pull request结束后,自动关闭相关 issue。
+根据操作自动回复,自动触发事件。如 issue 标记未 duplicate 自动关闭; 
+
+配置文件 `.github\stale.yml`
 
 https://docs.github.com/en/issues/tracking-your-work-with-issues/linking-a-pull-request-to-an-issue
 
@@ -19,9 +65,43 @@ https://docs.github.com/en/issues/tracking-your-work-with-issues/linking-a-pull-
 https://github.com/features/actions
 
 
+目前机器人都由 github action 实现,创建一个 `.github\workflows\close_issues.yml` 文件,即可实现自动化操作。
+
+```yml
+on:
+  issues:
+    types: [opened]
+  pull_request_target:
+    types: [opened]
+```
+
+每隔 5 分钟检查一次 issue,如果 issue 未标记为 duplicate,自动关闭 issue。
+```yml
+on:
+  schedule:
+    - cron: '*/5 * * * *'
+jobs:
+  stale:
+    runs-on: ubuntu-latest
+    steps:
+      - uses: actions/stale@v8
+        with:
+          stale-issue-message: 'This issue is stale because it has been open 100 days with no activity. Remove stale label or comment or this will be closed in 1 days.'
+          days-before-stale: 100
+          days-before-close: 1
+          debug-only: true
+
+```
 
 
 ## pull request 机器人
 
+用户发起 pull request 后,自动检查代码规范,自动合并代码,自动发布到 npm 等。如果 pull request结束后,自动关闭相关 issue。
+
+```
+
+```
 
+## Donations
 
+配置 `.github\FUNDING.yml` 用于接受捐赠

+ 11 - 0
docs/package.json

@@ -0,0 +1,11 @@
+{
+  "name": "docs",
+  "version": "1.0.1",
+  "description": "总结 github action, gitlab ci/cd, gitpod 等",
+  "main": "index.js",
+  "scripts": {
+    "test": "echo \"Error: no test specified\" && exit 1"
+  },
+  "author": "",
+  "license": "ISC"
+}

+ 2 - 0
flutter/.github/workflows/android-build.yml

@@ -2,6 +2,8 @@ name: CI
 on:
   push:
     branches: [ master , main]
+    paths-ignore:
+      - '**.md'
   pull_request:
     branches: [ master , main]
 jobs:

+ 1 - 1
flutter/.ide/Dockerfile

@@ -1 +1 @@
-FROM sift-docker.pkg.coding.net/flutter-team/dev-container/dev-allinone:1.0.9-flutter
+FROM sift-docker.pkg.coding.net/flutter-team/dev-container/dev-allinone:1.0.11-flutter

+ 95 - 49
flutter/.ide/Dockerfile-Allinone-flutter

@@ -1,22 +1,21 @@
-FROM openjdk:11 as builder
-
-ENV MAVEN_VERSION=3.9.5 \
-    GRADLE_VERSION=7.5
-ARG FLUTTER_VERSION="3.13.5"
+FROM ubuntu:24.04 as builder
 
+USER root
 # apt change to aliyun
-RUN sed -i s@/deb.debian.org/@/mirrors.aliyun.com/@g /etc/apt/sources.list
-RUN sed -i s@/security.debian.org/@/mirrors.aliyun.com/@g /etc/apt/sources.list
+RUN sed -i s@/archive.ubuntu.com/@/mirrors.aliyun.com/@g /etc/apt/sources.list.d/ubuntu.sources
+RUN sed -i s@/security.ubuntu.com/@/mirrors.aliyun.com/@g /etc/apt/sources.list.d/ubuntu.sources
 
 RUN apt-get update && apt-get install -y \
-    curl zip unzip wget git vim
-
-RUN apt install build-essential -y
+    curl zip unzip wget git vim build-essential
 
-# install java 21.0.1-ms
+# install java
 RUN curl -s "https://get.sdkman.io" | bash
-RUN bash -c "source $HOME/.sdkman/bin/sdkman-init.sh && sdk install java 21.0.1-ms"
-ENV JAVA_HOME /root/.sdkman/candidates/java/21.0.1-ms
+RUN bash -c "source $HOME/.sdkman/bin/sdkman-init.sh && sdk install java 17.0.11-ms"
+ENV JAVA_HOME /root/.sdkman/candidates/java/17.0.11-ms
+ENV PATH=$PATH:$JAVA_HOME/bin
+
+ENV MAVEN_VERSION=3.9.5 \
+    GRADLE_VERSION=7.5
 
 # install gradle
 RUN wget https://services.gradle.org/distributions/gradle-${GRADLE_VERSION}-bin.zip -P /tmp
@@ -51,12 +50,15 @@ ENV PUB_HOSTED_URL=https://pub.flutter-io.cn
 ENV FLUTTER_STORAGE_BASE_URL=https://storage.flutter-io.cn
 
 # install flutter
+ARG FLUTTER_VERSION="3.13.5"
 RUN git clone --branch ${FLUTTER_VERSION} https://github.com/flutter/flutter.git ${FLUTTER_HOME} \
     && cd ${FLUTTER_HOME} \
     && ./bin/flutter precache \
     && ./bin/flutter doctor
 
-# install python 3.12.1
+RUN curl -fsSL https://fvm.app/install.sh | bash
+
+# install python
 RUN mkdir -p ~/.pip
 RUN echo '\n\
     [global] \n\
@@ -64,29 +66,50 @@ RUN echo '\n\
     index-url=https://mirrors.aliyun.com/pypi/simple/ \n\
     ' > ~/.pip/pip.conf
 
-# RUN apt-get install -y software-properties-common
-# RUN add-apt-repository -y ppa:deadsnakes/ppa
-# RUN apt update
-# RUN apt-get install -y python3.12 python3.12-distutils
-# RUN apt install make
-RUN \
-    apt-get update && \
-    apt-get install -y python3 python3-dev python-dev python-pip python3-pip python-virtualenv && \
-    rm -rf /var/lib/apt/lists/*
-# RUN wget http://npm.taobao.org/mirrors/python/3.12.1/Python-3.12.1.tgz
-# RUN tar -zxf Python-3.12.1.tgz && cd Python-3.12.1 && \
-#     mkdir -p /opt/python/3.12.1 && \
-#     ./configure --prefix=/opt/python/3.12.1 --enable-shared --with-ssl --enable-optimizations && \
-#     make && make install && \
-#     cd .. && rm -rf Python-3.12.1*
-# RUN curl -sS https://bootstrap.pypa.io/get-pip.py | python3
-
-# RUN curl http://fileshare.yoqi.me/d/DevFiles/Develop/Python/get-pip.py?sign=17C5fjx9l5VpBJ6FCHonje5nEEkylSINsPlKsASVkRc=:1702263152 -o get-pip.py && \
-#     python3 get-pip.py && \
-#     rm get-pip.py
-
-# RUN ln -s /usr/bin/python3.9 /usr/bin/python && \
-#     ln -s /usr/bin/pip3 /usr/bin/pip
+ARG PYTHON_MAJ_VERSION=3.12
+ARG PYTHON_PATCH_VERSION=1
+ARG PYTHON_VERSION=${PYTHON_MAJ_VERSION}.${PYTHON_PATCH_VERSION}
+
+RUN apt-get update && \
+    apt-get install -y \
+    make \
+    build-essential \
+    libssl-dev \
+    zlib1g-dev \
+    libbz2-dev \
+    libreadline-dev \
+    libsqlite3-dev \
+    curl \
+    llvm \
+    libncurses5-dev \
+    libncursesw5-dev \
+    xz-utils \
+    tk-dev python3-dev default-libmysqlclient-dev libpq-dev
+RUN curl -O https://mirrors.huaweicloud.com/python/${PYTHON_VERSION}/Python-${PYTHON_VERSION}.tgz && \
+    tar xzf Python-${PYTHON_VERSION}.tgz && \
+    rm Python-${PYTHON_VERSION}.tgz && \
+    cd Python-${PYTHON_VERSION} && \
+    ./configure --prefix=/opt/python/${PYTHON_VERSION}/ --enable-optimizations --with-lto --with-computed-gotos --with-system-ffi && \
+    make -j "$(nproc)" && \
+    make altinstall
+
+RUN /opt/python/${PYTHON_VERSION}/bin/python${PYTHON_MAJ_VERSION} -m pip install --upgrade pip setuptools wheel poetry && \
+    ln -s /opt/python/${PYTHON_VERSION}/bin/python${PYTHON_MAJ_VERSION}  /opt/python/${PYTHON_VERSION}/bin/python3 && \
+    ln -s /opt/python/${PYTHON_VERSION}/bin/python${PYTHON_MAJ_VERSION}  /opt/python/${PYTHON_VERSION}/bin/python && \
+    ln -s /opt/python/${PYTHON_VERSION}/bin/pydoc${PYTHON_MAJ_VERSION}   /opt/python/${PYTHON_VERSION}/bin/pydoc && \
+    ln -s /opt/python/${PYTHON_VERSION}/bin/idle${PYTHON_MAJ_VERSION}    /opt/python/${PYTHON_VERSION}/bin/idle && \
+    ln -s /opt/python/${PYTHON_VERSION}/bin/python${PYTHON_MAJ_VERSION}-config /opt/python/${PYTHON_VERSION}/bin/python-config
+ENV PATH=/opt/python/${PYTHON_VERSION}/bin:${PATH}
+
+RUN git clone --depth 1 https://github.com/pyenv/pyenv.git ~/.pyenv && \
+    echo 'export PYENV_ROOT="$HOME/.pyenv"' >> ~/.bashrc && \
+    echo 'command -v pyenv >/dev/null || export PATH="$PYENV_ROOT/bin:$PATH"' >> ~/.bashrc && \
+    echo 'eval "$(pyenv init -)"' >> ~/.bashrc
+
+ENV PATH=$PATH:/root/.pyenv/bin
+ENV PYTHON_BUILD_MIRROR_URL_SKIP_CHECKSUM=1
+ENV PYTHON_BUILD_MIRROR_URL=https://mirrors.huaweicloud.com/python/
+# RUN pyenv install ${PYTHON_VERSION} &&  pyenv global ${PYTHON_VERSION}
 
 # install R
 RUN apt-get update && apt-get install -y \
@@ -97,37 +120,47 @@ RUN apt-get update && apt-get install -y \
     ruby-full rubygems ruby-dev
 
 # install rust
+ENV RUSTUP_DIST_SERVER=https://mirrors.ustc.edu.cn/rust-static
+ENV RUSTUP_UPDATE_ROOT=https://mirrors.ustc.edu.cn/rust-static/rustup
+ENV RUSTUP_DIST_ROOT=https://mirrors.ustc.edu.cn/rust-static
+
 RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
 
-# install .net core 6.0
-# RUN wget https://packages.microsoft.com/config/ubuntu/21.04/packages-microsoft-prod.deb -O packages-microsoft-prod.deb && \
+# # install .net core 6.0
+# RUN wget http://ftp.us.debian.org/debian/pool/main/i/icu/libicu67_67.1-1_amd64.deb && \
+# dpkg -i libicu67_67.1-1_amd64.deb
+# RUN wget https://packages.microsoft.com/config/ubuntu/22.04/packages-microsoft-prod.deb -O packages-microsoft-prod.deb && \
 #     dpkg -i packages-microsoft-prod.deb && \
 #     rm packages-microsoft-prod.deb && \
 #     apt-get update && \
 #     apt-get install -y apt-transport-https && \
 #     apt-get update && \
-#     apt-get install -y dotnet-sdk-6.0
+#     apt-get install -y dotnet-sdk-6.0 dotnet-runtime-deps-6.0
 
 # install go1.21
 RUN wget https://go.dev/dl/go1.21.4.linux-amd64.tar.gz && \
     tar -C /usr/local -xzf go1.21.4.linux-amd64.tar.gz && \
     rm go1.21.4.linux-amd64.tar.gz
 ENV PATH=$PATH:/usr/local/go/bin
-RUN export GOPROXY="https://goproxy.io,direct"
+ENV GOPROXY="https://goproxy.io,direct"
 
 # install nodejs20
 RUN curl -fsSL https://deb.nodesource.com/setup_20.x | bash -
 RUN apt-get install -y nodejs
-RUN npm config set registry http://registry.npm.taobao.org --global
-# RUN npm config set ELECTRON_MIRROR https://npmmirror.com/mirrors/electron/ --global
-# RUN npm config set ELECTRON_BUILDER_BINARIES_MIRROR https://npmmirror.com/mirrors/electron-builder-binaries/ --global
-RUN npm install -g yarn pnpm
+RUN echo '\n\
+    registry=http://registry.npm.taobao.org \n\
+    sass_binary_site=https://npmmirror.com/mirrors/node-sass/ \n\
+    electron_mirror=https://npmmirror.com/mirrors/electron/ \n\
+    ELECTRON_BUILDER_BINARIES_MIRROR=https://npmmirror.com/mirrors/electron-builder-binaries/ \n\
+    ' > ~/.npmrc
+RUN npm install -g yarn pnpm serve
 
 LABEL email="liuyuqi<liuyuqi.gov@msn.cn>"
 WORKDIR /workspaces
 
 RUN apt-get install -y openssh-server
-RUN rm -rf /var/lib/apt/lists/*
+RUN apt-get clean && \
+    rm -rf /var/lib/apt/lists/*
 
 # 指定字符集支持命令行输入中文(根据需要选择字符集)
 ENV LANG C.UTF-8
@@ -135,10 +168,22 @@ ENV LANGUAGE C.UTF-8
 
 # set path
 RUN echo '\n\
-    export PATH=$PATH:$GRADLE_HOME/bin \n\
-    export JAVA_HOME=/usr/local/openjdk-11 \n\
+    export JAVA_HOME=/root/.sdkman/candidates/java/17.0.11-ms \n\
     export PATH=$PATH:$JAVA_HOME/bin \n\
+    export GRADLE_HOME=/opt/gradle/gradle-${GRADLE_VERSION} \n\
+    export PATH=$PATH:$GRADLE_HOME/bin \n\
+    export MAVEN_HOME=/opt/maven/apache-maven-${MAVEN_VERSION} \n\
     export PATH=$PATH:$MAVEN_HOME/bin \n\
+    export FLUTTER_HOME=/opt/flutter \n\
+    export PUB_HOSTED_URL=https://pub.flutter-io.cn \n\
+    export FLUTTER_STORAGE_BASE_URL=https://storage.flutter-io.cn \n\
+    export PATH=$PATH:$FLUTTER_HOME/bin \n\
+    export PATH=$PATH:/opt/python/${PYTHON_VERSION}/bin \n\
+    export PYTHON_BUILD_MIRROR_URL_SKIP_CHECKSUM=1 \n\
+    export PYTHON_BUILD_MIRROR_URL=https://mirrors.huaweicloud.com/python/ \n\
+    export RUSTUP_DIST_SERVER=https://mirrors.ustc.edu.cn/rust-static \n\
+    export RUSTUP_UPDATE_ROOT=https://mirrors.ustc.edu.cn/rust-static/rustup \n\
+    export RUSTUP_DIST_ROOT=https://mirrors.ustc.edu.cn/rust-static \n\
     export PATH=$PATH:/usr/local/go/bin \n\
     export GOPROXY="https://goproxy.io,direct" \n\
     ' >> ~/.bashrc
@@ -149,7 +194,6 @@ RUN curl -fsSL https://code-server.dev/install.sh | sh &&\
     code-server --install-extension orta.vscode-jest &&\
     code-server --install-extension dbaeumer.vscode-eslint &&\
     code-server --install-extension ms-python.python &&\
-    code-server --install-extension ms-python.vscode-pylance &&\
     code-server --install-extension ms-azuretools.vscode-docker &&\
     code-server --install-extension mhutchie.git-graph &&\
     code-server --install-extension ardisaurus.gitflow-actions-sidebar &&\
@@ -165,7 +209,9 @@ RUN curl -fsSL https://code-server.dev/install.sh | sh &&\
     code-server --install-extension vscjava.vscode-spring-initializr &&\
     echo done
 
+# code-server --install-extension ms-python.vscode-pylance &&\
 # code-server --install-extension ms-dotnettools.csharp &&\
+COPY ./frp /opt/frp
 
 VOLUME [ "/workspaces" ]
 

+ 1 - 1
others/.github/workflows/genshin.yml

@@ -13,7 +13,7 @@ jobs:
       - uses: actions/checkout@v2
 
       - name: Set up python
-        uses: actions/setup-python@v2
+        uses: actions/setup-python@v4
         with:
           python-version: 3.8
 

+ 1 - 1
python/.github/workflows/autoci.yml

@@ -27,7 +27,7 @@ jobs:
         
       - name: Set up Python 3.8
         id: setup-python
-        uses: actions/setup-python@v2
+        uses: actions/setup-python@v4
         with:
           python-version: 3.8
 

+ 1 - 1
python/.github/workflows/publish2.yml

@@ -10,7 +10,7 @@ jobs:
     steps:
       - uses: actions/checkout@v2
       - name: Set up Python 3.8
-        uses: actions/setup-python@v1
+        uses: actions/setup-python@v4
         with:
           python-version: 3.8
       - name: Upgrade pip

+ 1 - 1
python/.github/workflows/pylint.yml

@@ -14,7 +14,7 @@ jobs:
     - uses: actions/checkout@v2
     
     - name: Set up Python ${{ matrix.python-version }}
-      uses: actions/setup-python@v2
+      uses: actions/setup-python@v4
       with:
         python-version: ${{ matrix.python-version }}