简单优雅的前端脚手架: 提高前端的研发效能
项目初始化的标准流程:
```bash
femaker new demo
femaker info v1.0.0 ✔ 请选择模版类型 · 项目 ✔ 请选择模板 · antd 正在下载模版... 项目初始化完成!
cd demo git init git add . git commit -m "chore: first commit" git branch -M main # 主分支重命名为 main git remote add origin https://github.com/luozyiii/demo.git git push -u origin main # 强制推送
```
将平时喜欢的项目模版添加到 femaker 脚手架(仅支持 git 仓库)
```bash femaker add
femaker info v1.0.0 ✔ 请选择模版类型 · 项目 请填写模版名称: Taro小程序模版 请填写模版git地址: https://github.com/luozyiii/taro-app.git 模板添加成功! ```
```bash femaker list
femaker info v1.0.0 【项目】Taro小程序模板 【组件】小程序表单组件 【项目】pc 项目 ```
```bash
[ { "name": "开发环境", "serveraddress": "81.71.98.176:22", "username": "root", "password": "*", "localdir": "./test", "remotedir": "/root/rust-test" }, { "name": "测试环境", "serveraddress": "81.71.98.176:22", "username": "root", "password": "*", "localdir": "./test", "remotedir": "/root/rust-test" } ]
femaker deploy
femaker info v1.3.0 ✔ 请选择部署环境 · 测试环境 开始部署... 创建远程目录: "/root/rust-test" 创建远程目录: "/root/rust-test/abc" 上传文件: "/root/rust-test/abc/1.txt" 上传文件: "/root/rust-test/2.txt" 部署成功! ```
```bash
cargo login token
cargo build
cargo doc --no-deps
cargo publish
```
```bash
```
json
// .vscode/settings.json
{
"[rust]": {
"editor.defaultFormatter": "statiolake.vscode-rustfmt",
"editor.formatOnSave": true,
"editor.tabSize": 4
}
}