# ruoyi-vue-rust **Repository Path**: rust-learning/ruoyi-vue-rust ## Basic Information - **Project Name**: ruoyi-vue-rust - **Description**: RuoYi-Vue 全新 Rust 版本 - **Primary Language**: Rust - **License**: MIT - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-09-02 - **Last Updated**: 2025-09-02 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README - Git 全局设置: ```shell git config --global user.name "Gemiman.2#" git config --global user.email "913573586@qq.com" ``` - 创建 git 仓库: ```shell cargo new ruoyi-vue-rust cd ruoyi-vue-rust git add . git commit -m "first commit" git remote add origin git@github.com:daoyi-cloud/ruoyi-vue-rust.git git branch -M main git push -u origin main ``` - 安装 sea-orm-cli ```shell cargo install sea-orm-cli ``` - 生成 entity ```shell sea-orm-cli generate entity -s demo --with-serde both --model-extra-attributes 'serde(rename_all="camelCase")' --date-time-crate chrono -o ./src/entity ``` - 输出sql日志,配置环境变量: ```text RUST_LOG=DEBUG ```