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
- Host: GitHub
- URL: https://github.com/web-dev-sam/templates
- Owner: web-dev-sam
- License: mit
- Created: 2024-10-06T15:21:52.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-12-06T08:18:48.000Z (over 1 year ago)
- Last Synced: 2025-07-27T08:46:18.690Z (10 months ago)
- Topics: astro, biome, monorepo, nuxt3, tailwind
- Language: TypeScript
- Homepage:
- Size: 2.63 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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.