2023-04-09 08:19:40 -04:00
|
|
|
package main
|
|
|
|
|
|
|
|
|
|
var prog_help = `Scaffold requires 2 parameters
|
|
|
|
|
1) a project type
|
|
|
|
|
and
|
|
|
|
|
2) a name for your new project
|
|
|
|
|
|
|
|
|
|
Usage examples:
|
|
|
|
|
|
|
|
|
|
scaffold go NewGoProject
|
|
|
|
|
scaffold py aPythonProject
|
|
|
|
|
`
|
2023-04-09 16:51:19 -04:00
|
|
|
|
2023-04-10 18:53:24 -04:00
|
|
|
var cfg_content = `# Scaffold program configuration
|
|
|
|
|
|
|
|
|
|
# Format: TOML - see https://toml.io for details
|
|
|
|
|
|
|
|
|
|
# Too funny - this config file doesn't seem to be needed ;-)
|
|
|
|
|
# let's keep it for future use -- very silly
|
|
|
|
|
testkey = "test value"`
|