feat: init commit

This commit is contained in:
2020-12-06 23:36:44 +08:00
parent 18318eed7d
commit 1a0ce5f5ce
7 changed files with 137 additions and 0 deletions

24
template.toml Normal file
View File

@@ -0,0 +1,24 @@
name = "Java template"
description = "Java application template"
kickstart_version = 1
ignore = [
".gitignore",
"README.md",
"LICENSE",
]
cleanup = [
]
[[variables]]
name = "project_name"
default = "Sample-App"
prompt = "What's the name of the project?"
validation = "^([a-zA-Z][a-zA-Z0-9_-]+)$"
[[variables]]
name = "archive_name"
default = "sampleapp"
prompt = "What's the archive name of the project?"
validation = "^([a-zA-Z][a-zA-Z0-9_-]+)$"