# Pont
[](https://github.com/soupdevsolutions/pont/actions/workflows/ci.yml)
Pont is a simple project template generator and loader. You can generate templates and load them from Git repositories or local directories.
## Installation
```bash
cargo install pont
```
## Usage
### Generate a template
```bash
pont new <template-name>
```
### Build a project from a template
```bash
pont build --name <template-name> --from <source>
```
## Example
```bash
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>
```