kickstart
kickstart copied to clipboard
A scaffolding tool to get new projects up and running quickly
First off, great project! It really solves a problem for me. Is there a way/could there be a way to use the files within the set `directory` option without adding...
E.g. my template requires the project to be a git repository, but bundling a `.git` folder is, well, meh. It would be great if there was a way to run,...
The ability to pass the variables using an input file would be great. That means a user could run (for instance): ``` kickstart \ https://github.com/some/template \ --data https://gist.github.com/chevdor/050df6...c6e4207 ``` or...
Hi! Stumbled on this whilst looking through the `cargo template` RFCs. From the docs, it's not obvious (at least for me) whether this is supported so I figured I'd just...
would it be worth changing https://github.com/Keats/kickstart/blob/51de34745d928475e219ecfb51a9b8edb8803ae2/src/generation.rs#L172 to use `.contains` or some kind of glob matcher. I'm trying to delete all files in a directory and not the directory itself, because...
Would it be worth a PR to introduce a `postKickstart` or whatever naming convention directive, to run commands after all the kickstart questions? i have a scenario where i'd like...
As I understand it, if put your template under a "template" folder (for instance) and add `directory = "template"` to your `template.toml`, `template` should become the root of the scaffold....
Trying to escape #51, I tested to see if the `--sub-dir` could help. I tested a very basic template and the following works: ``` kickstart . -o /tmp ``` Using...
Loading the ENV to the Tera context is convenient in 2 locations: ## template The `template.toml` itself could go thru a first transformation pass. That would allow for instance: ```...