CAZ official templates
Clone all template repositories
# create a workspace dir
$ mkdir caz-templates && cd $_
# clone all templates
$ git clone https://github.com/caz-templates/minima.git minima
$ git clone https://github.com/caz-templates/template.git starter
$ git clone https://github.com/caz-templates/nm.git nm
$ git clone https://github.com/caz-templates/vercel.git vercel
$ git clone https://github.com/caz-templates/vue.git vue
$ git clone https://github.com/caz-templates/vite.git vite
$ git clone https://github.com/caz-templates/x-pages.git x-pages
# touch a vscode workspace config file
$ vi templates.code-workspace
The templates.code-workspace
contents
{
"folders": [
{
"path": "minima"
},
{
"path": "starter"
},
{
"path": "nm"
},
{
"path": "vercel"
},
{
"path": "vue"
},
{
"path": "vite"
},
{
"path": "x-pages"
}
],
"settings": {
"files.associations": {
"**/template/**": "html"
}
},
"extensions": {
"recommendations": [
"digitalbrainstem.javascript-ejs-support"
]
}
}
Open templates.code-workspace
in VSCode
- Fork it on GitHub!
- Clone the fork to your own machine.
- Checkout your feature branch:
git checkout -b my-awesome-feature
- Commit your changes to your own branch:
git commit -am 'Add some feature'
- Push your work back up to your fork:
git push -u origin my-awesome-feature
- Submit a Pull Request so that we can review your changes.
NOTE: Be sure to merge the latest from "upstream" before making a pull request!