25 lines
463 B
TOML
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_-]+)$"
|
|
|