Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/raelmax/cook
A simple command line application to generate projects from templates.
https://github.com/raelmax/cook
Last synced: 13 days ago
JSON representation
A simple command line application to generate projects from templates.
- Host: GitHub
- URL: https://github.com/raelmax/cook
- Owner: raelmax
- License: mit
- Archived: true
- Created: 2015-06-20T04:14:53.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-06-26T14:49:18.000Z (over 9 years ago)
- Last Synced: 2024-08-01T22:53:28.806Z (3 months ago)
- Language: Go
- Homepage: https://github.com/raelmax/cook
- Size: 1.72 MB
- Stars: 16
- Watchers: 3
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# cook
A simple command line application to create projects from templates.[![GoDoc](https://godoc.org/github.com/raelmax/cook?status.svg)](https://godoc.org/github.com/raelmax/cook)
## Installing
### Using
Get the binary for your platform: [linux](https://github.com/raelmax/cook/raw/master/bin/linux/cook) | [mac](https://github.com/raelmax/cook/raw/master/bin/darwin/cook)
Give permission to execute:
```
$ chmod +x cook
```Execute:
```
$ ./cook raelmax/cook-basic-template
```This command will ask you some questions about this template and generate your
project based on your answers.## Templates
Cook use the same syntax of cookiecutter to your projects templates, so, you can
use any templates from [cookiecutter list](https://github.com/audreyr/cookiecutter#available-cookiecutters).### Create your own template
You can(and should!) create your own templates, and to help you with this task
we offer a example [at this repository](https://github.com/raelmax/cook-basic-template).