mirror of http://git.sairate.top/sairate/doc.git
6 lines
94 B
Python
6 lines
94 B
Python
|
import os
|
||
|
import subprocess
|
||
|
|
||
|
# 运行 mkdocs serve 命令
|
||
|
subprocess.run(['mkdocs', 'serve'])
|