Pont
Pont is a simple project template generator and loader. You can generate templates and load them from Git repositories or local directories.
Installation
Usage
Generate a template
Build a project from a template
Example
Pont is a simple project template generator and loader. You can generate templates and load them from Git repositories or local directories.
cargo install pont
pont new <template-name>
pont build --name <template-name> --from <source>
pont new rust_server_template
cd ./rust_server_template
cargo init
cargo add axum tokio serde serde_json
git remote add origin <your-remote-repo>
git add .
git commit -m "Base project"
git push
cd ../
pont build --name cool_rust_app --from <your-remote-repo>