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

https://github.com/web-dev-sam/templates

A monorepo template using Nuxt/Astro/Tailwind/Shadcn
https://github.com/web-dev-sam/templates

astro biome monorepo nuxt3 tailwind

Last synced: 3 months ago
JSON representation

A monorepo template using Nuxt/Astro/Tailwind/Shadcn

Awesome Lists containing this project

README

          

# Templates

This is where my newer website templates are. I will be adding more as I go along.

## 🎉 Quick Start

This is a bash alias to quickly spin up a new project (If you use Windows you can still use it with git bash):

**Usage:** `get `.

**Example:** `get nuxt-bun my-app`.

```bash
function get() {
if [ -z "$1" ] || [ -z "$2" ]; then
echo "Error: Both arguments are required"
echo "Usage: get "
return 1
fi

npx giget@latest "gh:web-dev-sam/templates/$1" "$2"

# Check if folder is completely empty
if [ -z "$(ls -A "$2" 2>/dev/null)" ]; then
rm -rf "$2"
echo "Error: Template '$1' doesn't exist in gh:web-dev-sam/templates/"
return 1
fi
}
```

Read the respective READMEs for more information on each template.