Last active
September 12, 2023 00:46
-
-
Save nexxai/bd2f6af195d1ee26ac25d8cef6311ed4 to your computer and use it in GitHub Desktop.
ZSH shell script function to create a new Astro website with tailwind, netlify and alpine.js already installed
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function astronew() { | |
| bunx create-astro@latest ./ | |
| bunx astro add tailwind --yes | |
| bunx astro add netlify --yes | |
| bunx astro add alpinejs --yes | |
| code . | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment