diff options
author | 2021-03-29 08:43:16 -0700 | |
---|---|---|
committer | 2021-03-29 08:43:38 -0700 | |
commit | 4ff1822bb961776494e11273cbfa81fd932af0d5 (patch) | |
tree | 58b3addc9d7cb9abb264a26e3366161a0fef7fae /examples/landing-page/README.md | |
parent | 9ab1f52a1ca018b7551dc610f7099d300ce5b473 (diff) | |
download | astro-4ff1822bb961776494e11273cbfa81fd932af0d5.tar.gz astro-4ff1822bb961776494e11273cbfa81fd932af0d5.tar.zst astro-4ff1822bb961776494e11273cbfa81fd932af0d5.zip |
add example www site
Diffstat (limited to '')
-rw-r--r-- | examples/landing-page/README.md | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/examples/landing-page/README.md b/examples/landing-page/README.md new file mode 100644 index 000000000..11e615e1a --- /dev/null +++ b/examples/landing-page/README.md @@ -0,0 +1,37 @@ +# Astro Demo + +## Getting setup + +1. Checkout Astro at: https://github.com/snowpackjs/astro + + 1. Install and build Astro: + + ```shell + npm install + npm run build + ``` + + 2. Link Astro: + + ```shell + npm link + ``` + +2. In this project link Astro and install other deps: + +```shell +npm link astro +npm install +``` + +3. Run the Astro dev environment. + +```shell +npm run start +``` + +4. Build the website. (Not yet working.) + +```shell +npm run build +```
\ No newline at end of file |