#web-apps #web #static #cli

app rocket-starter

用于创建基于Rocket的Web应用程序骨架的工具

4个版本 (破坏性更新)

0.4.0 2024年5月22日
0.3.0 2024年5月8日
0.2.0 2024年5月8日
0.1.0 2024年5月8日

418HTTP服务器

Download history 297/week @ 2024-05-06 3/week @ 2024-05-13 118/week @ 2024-05-20 1/week @ 2024-06-10

每月164 次下载

MIT/Apache

15KB
396

Rocket启动器

开始构建基于Rocket的Web应用程序。

安装

cargo install rocket-starter

开始一个简单的基于Rocket的应用程序

rocket-starter --simple hello
cd hello
cargo test
cargo run

使用Tera模板开始基于Rocket的Web应用程序

  • 模板
  • 404页面
rocket-starter --tera2 hello
cd hello
cargo test
cargo run

使用Tera模板开始基于Rocket的Web应用程序

  • 模板
  • 404页面
  • 带有自定义配置的Rocket.toml文件
rocket-starter --tera1 hello
cd hello
cargo test
cargo run

发布

  • 将Cargo.toml中的版本号更新为0.4.0
  • 更新CHANGELOG.md
git add .
git commit -m "prepare for 0.4.0"
cargo publish
git tag -a 0.4.0 -m 0.4.0
git push --tags

依赖关系

~3–12MB
~143K SLoC