- 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
20 lines
579 B
Bash
20 lines
579 B
Bash
#!/bin/bash
|
|
|
|
# 胡汉三千年项目 - 本地文档服务器启动脚本
|
|
# Hu-Han Three Thousand Years Project - Local Documentation Server
|
|
|
|
echo "🚀 启动胡汉三千年项目文档服务..."
|
|
|
|
# 检查文档是否已构建
|
|
if [ ! -d "documentation/sphinx-docs/_build/html" ]; then
|
|
echo "📚 文档未构建,正在构建..."
|
|
./build_docs.sh
|
|
fi
|
|
|
|
# 启动本地服务器
|
|
echo "🌐 启动本地Web服务器..."
|
|
echo "📖 文档地址: http://localhost:8080"
|
|
echo "🛑 按 Ctrl+C 停止服务器"
|
|
|
|
cd documentation/sphinx-docs/_build/html
|
|
python3 -m http.server 8080 |