Add new command support for corral
There is already an init command, why is it superfluous?
It is the premise of adding template system to corral.
It looks like this logic:
mkdir hello
cd hello
corral init
The final new command:
corral new <template> mylib
results:
hello
├── corral.json
├── CHANGELOG.md
├── CODE_OF_CONDUCT.md
├── CONTRIBUTING.md
├── examples
│ └── simple-example
│ └── simple-example.pony
├── gitattributes
├── gitignore
├── hello
│ └── _test.pony
├── LICENSE
├── Makefile
├── README.md
├── RELEASE_PROCESS.md
└── STYLE_GUIDE.md
Add new command support for corral
There is already an
initcommand, why is it superfluous?It is the premise of adding template system to corral.
It looks like this logic:
mkdir hello cd hello corral initThe final new command:
results: