tgm - Template Generator Manager

Build Status tgm Crate dependency status

Generate project structure from git template repository.

Why tgm?

Template repository

Please add template.json file in your template repository, code as following:

json { "name": "spring-boot-java", "repository": "https://github.com/linux-china/spring-boot-java-template", "description": "Spring Boot App Java", "post_create": "mvn -DskipTests compile", "variables": [ { "name": "groupId", "description": "Maven groupId" }, { "name": "artifactId", "description": "Maven artifactId" } ], "files": [ "pom.xml","src/main/resources/application.properties" ] }

Attention: You can add regex pattern validation for variable's value like following:

json { "name": "email", "description": "author email", "pattern": "[\\w-\\.]+@([\\w-]+\\.)+[\\w-]{2,4}" }

In the resource files, such as pom.xml, use template variable as following:

xml <project> <groupId>@groupId@</groupId> <artifactId>@artifactId@</artifactId> </project>

default global variables:

Install & Usage

$ cargo install tgm $ tgm add linux-china/spring-boot-java-template $ tgm list $ tgm create spring-boot-java spring-app-demo

tgm commands:

$ tgm add --name spring-boot-java --repo https://github.com/linux-china/spring-boot-java-template.git --desc "Spring Boot Java template"

$ tgm import linux-china/spring-boot-kotlin-template $ tgm import https://github.com/linux-china/spring-boot-java-template

$ tgm remove spring-boot-java

$ tgm create spring-boot-java spring-demo1

Shell completion

oh-my-zsh

$ tgm complete --oh_my_zsh

tgm will add tgm to plugins in ~/.zshrc.

bash

$ tgm complete --bash > tgm-completion.bash $ source ./tgm-completion.bash

References