liuyuqi-dellpc 2 years ago
parent
commit
67817f0f65

+ 9 - 0
CONTRIBUTING.md

@@ -4,6 +4,15 @@
 
 
 There are many ways in which you can contribute, beyond writing code. The goal of this document is to provide a high-level overview of how you can get involved.
 There are many ways in which you can contribute, beyond writing code. The goal of this document is to provide a high-level overview of how you can get involved.
 
 
+## Develop
+
+```
+pip install mkdocs 
+pip install mkdocs-material
+
+mkdocs serve
+```
+
 ## Reporting Issues
 ## Reporting Issues
 
 
 Have you identified a reproducible problem? Have a feature request? We want to hear about it! Here's how you can make reporting your issue as effective as possible.
 Have you identified a reproducible problem? Have a feature request? We want to hear about it! Here's how you can make reporting your issue as effective as possible.

+ 13 - 0
docs/Index.md

@@ -0,0 +1,13 @@
+# github action
+
+总结 github action, gitlab ci/cd, gitpod 等
+
+## Contributing
+
+* 文档有错误之处,欢迎勘误。
+* 性知识点,欢迎补充
+
+## License
+
+
+

+ 13 - 0
docs/android/as_build.md

@@ -0,0 +1,13 @@
+# Android studio 构建apk
+
+本文介绍通过 as 创建项目,自动构建项目:
+
+```
+pip install mkdocs 
+pip install mkdocs-material
+
+mkdocs serve
+```
+
+## 
+

+ 10 - 0
docs/android/eclipse_build.md

@@ -0,0 +1,10 @@
+# eclipse项目 构建apk
+
+
+```
+pip install mkdocs 
+pip install mkdocs-material
+
+mkdocs serve
+```
+

+ 2 - 0
docs/android/flutter_apk.md

@@ -0,0 +1,2 @@
+# 构建 flutter 项目
+

+ 27 - 0
docs/android/flutter_ios.md

@@ -0,0 +1,27 @@
+# 构建 flutter IOS 项目
+
+本章介绍通过github托管代码,每次提交代码,github action自动触发构建,发布IOS。
+
+## 步骤
+
+* 安装 Apple证书
+* 构建App
+* 签名
+* 发布
+
+## 安装 Apple 证书
+
+打包证书 .p12, 描述文件 .mobileprovision 
+
+P12_BASE64
+P12_PASSWORD
+
+```
+- name: Install Apple Certificate
+  uses: apple-actions/import-codesign-certs@v1
+  with:
+    p12-file-base64: ${{ secrets.P12_BASE64 }}
+    p12-password: ${{ secrets.P12_PASSWORD }}
+```
+
+

+ 0 - 0
docs/dev_container.md


+ 13 - 0
docs/github_aciton.md

@@ -0,0 +1,13 @@
+# github action
+
+github action 是 github 2019年推出的ci/cd 自动化构建工具,采用 yml 配置文件方式配置构建步骤,可以使用linux(Ubuntu),Mac,Window等系统,相比其他平台是在强大。
+
+## 配置文件
+
+在 .github/workflows/build.yml 配置文件。
+workflow
+
+job
+
+step
+action

+ 2 - 0
docs/gitlab_ci.md

@@ -0,0 +1,2 @@
+# gitlab ci
+

+ 2 - 0
docs/gitpod.md

@@ -0,0 +1,2 @@
+# gitpod 构建
+

+ 7 - 0
mkdocs.yml

@@ -0,0 +1,7 @@
+site_name: 商业分析
+site_description: 商业分析
+site_url: http://business-analysis.yoqi.me/zh/
+theme:
+  name: material
+plugins:
+ - search

+ 2 - 0
requirements.txt

@@ -0,0 +1,2 @@
+mkdocs 
+mkdocs-material