Files
java-template/template.toml
2020-12-06 23:36:44 +08:00

25 lines
463 B
TOML

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_-]+)$"