rocket-starter

Crates.iorocket-starter
lib.rsrocket-starter
version0.4.0
sourcesrc
created_at2024-05-08 13:03:20.200983
updated_at2024-05-22 18:48:28.498082
descriptionTool to create skeleton for a Rocket-based web application
homepage
repositoryhttps://github.com/szabgab/rocket-starter.rs/
max_upload_size
id1233760
size26,251
Gábor Szabó (szabgab)

documentation

README

Rocket starter

Start building a Rocket-based web application.

Install

cargo install rocket-starter

Start a simple Rocket-based application

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

Start a Rocket-based web application using Tera template

  • Template
  • 404 pages
rocket-starter --tera2 hello
cd hello
cargo test
cargo run

Start a Rocket-based web application using Tera template

  • Template
  • 404 pages
  • Rocket.toml file with custom configuation
rocket-starter --tera1 hello
cd hello
cargo test
cargo run

Release

  • Update the version number in Cargo.toml to 0.4.0
  • Update the 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
Commit count: 30

cargo fmt