加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Makefile 555 Bytes
一键复制 编辑 原始数据 按行查看 历史
vicanso 提交于 2023-12-09 21:35 . chore: version 0.1.18
.PHONY: default
lint:
cd src-tauri && cargo clippy
fmt:
cd src-tauri && cargo fmt --all --
dev:
cargo tauri dev
icon:
cargo tauri icon ./cyberapi.png
build:
cargo tauri build
clean:
cd src-tauri && cargo clean
install-cli:
cargo install tauri-cli --version 1.4.0
install-orm-cli:
cargo install sea-orm-cli
orm:
cd src-tauri && sea-orm-cli generate entity --with-serde=both \
-u "sqlite:///~/Library/Application Support/com.bigtree.cyberapi/my_db.db" \
-o src/entities
version:
git cliff --unreleased --tag 0.1.18 --prepend CHANGELOG.md
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化