summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--packages/astro/README.md12
1 files 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
```