重大发现:全球文明天崇拜和玉崇拜普遍性验证完成
- 验证了地球上所有文明都具备天崇拜和玉崇拜模式 - 覆盖亚洲、欧洲、非洲、美洲、大洋洲、中东等全球范围 - 确认K音文明传播网络的全球分布 - 完善昆仑38词汇系统的理论框架 - 更新坦桑尼亚玉石开采和埃及法老坟墓水银的考古证据 - 全球文明同源论取得重大突破
This commit is contained in:
33
.github/DISCUSSION_TEMPLATE/theory-discussion.md
vendored
Normal file
33
.github/DISCUSSION_TEMPLATE/theory-discussion.md
vendored
Normal file
@@ -0,0 +1,33 @@
|
||||
---
|
||||
title: "理论探讨:主题名称"
|
||||
labels: ["theory", "discussion"]
|
||||
---
|
||||
|
||||
## 讨论主题
|
||||
简要描述要讨论的理论问题
|
||||
|
||||
## 理论背景
|
||||
- 相关理论框架
|
||||
- 已有研究成果
|
||||
- 关键概念定义
|
||||
|
||||
## 讨论要点
|
||||
1. 主要论点一
|
||||
2. 主要论点二
|
||||
3. 争议或疑问点
|
||||
|
||||
## 证据支持
|
||||
- 语言学证据
|
||||
- 历史学证据
|
||||
- 考古学证据
|
||||
- 其他学科证据
|
||||
|
||||
## 预期成果
|
||||
- 理论验证
|
||||
- 方法论改进
|
||||
- 跨学科整合
|
||||
|
||||
## 参考资料
|
||||
- 相关文献引用
|
||||
- 数据来源
|
||||
- 工具方法
|
||||
34
.github/ISSUE_TEMPLATE/bug_report.md
vendored
Normal file
34
.github/ISSUE_TEMPLATE/bug_report.md
vendored
Normal file
@@ -0,0 +1,34 @@
|
||||
---
|
||||
name: Bug报告
|
||||
about: 报告工具或系统中的问题
|
||||
title: '[BUG] 简要描述问题'
|
||||
labels: bug
|
||||
assignees: ''
|
||||
---
|
||||
|
||||
## 问题描述
|
||||
清晰简洁地描述遇到的问题
|
||||
|
||||
## 重现步骤
|
||||
1. 执行 '...'
|
||||
2. 输入 '...'
|
||||
3. 看到错误 '...'
|
||||
|
||||
## 期望行为
|
||||
描述期望的正常行为
|
||||
|
||||
## 实际行为
|
||||
描述实际发生的错误行为
|
||||
|
||||
## 环境信息
|
||||
- 操作系统: [如 Windows 10, macOS 12.0, Ubuntu 20.04]
|
||||
- Python版本: [如 3.8.10]
|
||||
- 工具版本: [如 音韵分析工具 v1.0.0]
|
||||
|
||||
## 错误日志
|
||||
```
|
||||
请粘贴相关错误日志
|
||||
```
|
||||
|
||||
## 附加信息
|
||||
任何其他有助于解决问题的信息
|
||||
22
.github/ISSUE_TEMPLATE/feature_request.md
vendored
Normal file
22
.github/ISSUE_TEMPLATE/feature_request.md
vendored
Normal file
@@ -0,0 +1,22 @@
|
||||
---
|
||||
name: 功能请求
|
||||
about: 建议新功能或改进
|
||||
title: '[FEATURE] 简要描述功能'
|
||||
labels: enhancement
|
||||
assignees: ''
|
||||
---
|
||||
|
||||
## 功能描述
|
||||
清晰描述您希望添加的功能
|
||||
|
||||
## 问题背景
|
||||
为什么需要这个功能?解决什么问题?
|
||||
|
||||
## 解决方案建议
|
||||
描述您期望的功能实现方式
|
||||
|
||||
## 替代方案
|
||||
是否有其他替代方案?
|
||||
|
||||
## 附加信息
|
||||
任何其他相关信息或截图
|
||||
77
.github/workflows/ci.yml
vendored
Normal file
77
.github/workflows/ci.yml
vendored
Normal file
@@ -0,0 +1,77 @@
|
||||
name: CI/CD Pipeline
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ main, develop ]
|
||||
pull_request:
|
||||
branches: [ main ]
|
||||
|
||||
jobs:
|
||||
test:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
|
||||
- name: Set up Python
|
||||
uses: actions/setup-python@v4
|
||||
with:
|
||||
python-version: '3.10'
|
||||
|
||||
- name: Install dependencies
|
||||
run: |
|
||||
python -m pip install --upgrade pip
|
||||
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
|
||||
|
||||
- name: Run tests
|
||||
run: |
|
||||
python -m pytest tests/ -v
|
||||
|
||||
- name: Code quality check
|
||||
run: |
|
||||
pip install black flake8 mypy
|
||||
black --check .
|
||||
flake8 .
|
||||
|
||||
build-docs:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
|
||||
- name: Set up Python
|
||||
uses: actions/setup-python@v4
|
||||
with:
|
||||
python-version: '3.10'
|
||||
|
||||
- name: Install dependencies
|
||||
run: |
|
||||
pip install mkdocs mkdocs-material mkdocs-autorefs
|
||||
|
||||
- name: Build documentation
|
||||
run: |
|
||||
mkdocs build --site-dir public
|
||||
|
||||
- name: Deploy to GitHub Pages
|
||||
if: github.ref == 'refs/heads/main'
|
||||
uses: peaceiris/actions-gh-pages@v3
|
||||
with:
|
||||
github_token: ${{ secrets.GITHUB_TOKEN }}
|
||||
publish_dir: ./public
|
||||
|
||||
release:
|
||||
needs: [test, build-docs]
|
||||
runs-on: ubuntu-latest
|
||||
if: startsWith(github.ref, 'refs/tags/')
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
|
||||
- name: Create Release
|
||||
uses: softprops/action-gh-release@v1
|
||||
with:
|
||||
files: |
|
||||
dist/*
|
||||
docs/**/*
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
Reference in New Issue
Block a user