From 57e0938cfaa83755637944cfdf3bd7aa2497cc44 Mon Sep 17 00:00:00 2001 From: "Fred K. Schott" Date: Tue, 8 Jun 2021 13:06:09 -0700 Subject: [PATCH] Update README.md --- packages/astro/README.md | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/packages/astro/README.md b/packages/astro/README.md index 051ec1eee..ede32d397 100644 --- a/packages/astro/README.md +++ b/packages/astro/README.md @@ -8,14 +8,18 @@ With Astro, you can use your favorite JavaScript framework and automatically shi ⚠️ **Astro is still an early beta, missing features and bugs are to be expected!** If you can stomach it, then Astro-built sites are production ready and several production websites built with Astro already exist in the wild. We will update this note once we get closer to a stable, v1.0 release. -## 🔧 Setup +## 🔧 Quick Start ```bash -npm init astro ./my-astro-project +# create your project +mkdir new-project-directory +cd new-project-directory +npm init astro -# then... cd => install => start -cd ./my-astro-project +# install your dependencies npm install + +# start the dev server and open your browser npm start ```