feat: Complete project reorganization

- Reorganize core-theory into 6 thematic subdirectories (01-06)
- Clean up root directory, move files to appropriate locations
- Create comprehensive README files for navigation
- Add new academic papers and research content
- Implement English naming convention for better indexing
- Total: 42 core theory files organized, 7 READMEs created

Key improvements:
- Clear hierarchical structure (foundational → matrix → analysis → empires)
- Better discoverability with detailed navigation guides
- Scalable framework for future content expansion
- AI-friendly organization for indexing and processing
This commit is contained in:
ben
2025-10-21 12:56:11 +00:00
parent b6105b6770
commit 1595d7f68e
105 changed files with 19448 additions and 197 deletions

33
scripts/serve_docs.sh Executable file
View File

@@ -0,0 +1,33 @@
#!/bin/bash
# 胡汉三千年项目文档服务器
# Hu-Han Three Thousand Years Project Documentation Server
echo "🚀 启动胡汉三千年项目文档服务器..."
# 检查文档是否已构建
if [ ! -d "documentation/sphinx-docs/_build/html" ]; then
echo "📚 文档尚未构建,正在构建..."
./build_docs.sh
fi
# 进入文档目录
cd documentation/sphinx-docs/_build/html
# 获取本机IP地址
LOCAL_IP=$(hostname -I | awk '{print $1}')
echo "📖 文档服务器启动成功!"
echo ""
echo "🌐 访问地址:"
echo " 本地访问: http://localhost:8000"
echo " 局域网访问: http://$LOCAL_IP:8000"
echo ""
echo "💡 提示:"
echo " - 按 Ctrl+C 停止服务器"
echo " - 修改文档后需要重新构建: ./build_docs.sh"
echo ""
echo "🎉 正在启动服务器..."
# 启动Python HTTP服务器
python3 -m http.server 8000