新增功能:初始化时下载python和git

This commit is contained in:
li-xiaochen 2024-12-12 07:46:08 +08:00
parent 00212e447b
commit 8a9b8d1c47
4 changed files with 209 additions and 21 deletions

View file

@ -1,13 +1,16 @@
<script setup>
const steps = ref([
{ title: '设置 Git LFS', command: ['lfs'] },
{
title: '下载 git、python',
command: ['download_git', 'download_python']
},
{
title: '安装 pip',
command: ['ensurepip']
},
{
title: '下载 mower-ng 代码',
command: ['clone']
command: ['lfs', 'clone']
}
])
provide('steps', steps)