diff options
author | 2021-06-08 13:06:09 -0700 | |
---|---|---|
committer | 2021-06-08 13:06:09 -0700 | |
commit | 57e0938cfaa83755637944cfdf3bd7aa2497cc44 (patch) | |
tree | ec266574f26de7739f4720813b75534db60472b2 | |
parent | 9afa92d0c1f1a8acb7067ca00c3f35ffcae5987a (diff) | |
download | astro-57e0938cfaa83755637944cfdf3bd7aa2497cc44.tar.gz astro-57e0938cfaa83755637944cfdf3bd7aa2497cc44.tar.zst astro-57e0938cfaa83755637944cfdf3bd7aa2497cc44.zip |
Update README.md
-rw-r--r-- | packages/astro/README.md | 12 |
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 ``` |