pont 0.1.0

A project template tool that works with Git repositories and local directories.
Documentation

Pont

CI

Pont is a simple project template generator and loader. You can generate templates and load them from Git repositories or local directories.

Installation

cargo install pont

Usage

Generate a template

pont new <template-name>

Build a project from a template

pont build --name <template-name> --from <source>

Example

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>