Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/semibran/templates
- Owner: semibran
- License: mit
- Created: 2018-03-02T21:58:57.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2020-10-18T22:46:10.000Z (about 4 years ago)
- Last Synced: 2024-10-20T13:45:19.459Z (about 1 month ago)
- Topics: generator, scaffolding, template
- Language: JavaScript
- Homepage:
- Size: 21.5 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: license
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