Files
scaffold/data-strings.go
2023-04-17 05:19:25 -04:00

30 lines
762 B
Go

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
`
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"
# Turn on/off testing for the existence of the ssh executable
# it's just an extra safe guard.
# Because it's required for the remote repo and gitea setups.
# If you turn it off, you can still
# control the remote repo and gitea setups
# via the create_remote_repo and setup_gitea options in scaffold-projectType.toml
test_for_ssh = true
`