Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/semibran/templates

collection of opinionated templates
https://github.com/semibran/templates

generator scaffolding template

Last synced: 19 days ago
JSON representation

collection of opinionated templates

Awesome Lists containing this project

README

        

# templates
This repository holds a collection of opinionated templates for use with [`scaffy`][semibran/scaffy]. The following directories are included:

```
app
├── src
│   ├── index.html
│   ├── script.js
│   └── style.scss
├── .gitignore
├── license
├── Makefile
├── package.json
├── readme.md
└── rollup.config.js
```

```
module
├── lib
│   └── {{name}}.js
├── license
├── package.json
└── readme.md
```

```
tool
├── bin
│   ├── help.txt
│   └── {{name}}.js
├── .gitignore
├── license
├── package.json
└── readme.md
```

## usage
To use these templates locally, clone this repository and invoke `scaffy` with the data variables `name` and `description`.

```sh
$ git clone [email protected]:semibran/templates
$ scaffy templates/app -o app \
> --name=app \
> --description="an example app"
$ cd app
$ git init
```

[semibran/scaffy]: https://github.com/semibran/scaffy