summaryrefslogtreecommitdiff
path: root/docs/src/pages/guides
diff options
context:
space:
mode:
authorGravatar Fred K. Schott <fkschott@gmail.com> 2021-08-26 12:08:52 -0700
committerGravatar GitHub <noreply@github.com> 2021-08-26 12:08:52 -0700
commitff92be637ffd9a9841b771e94d8deef1c62422cb (patch)
tree56dab4a40c432e95914eaedbf3df7d3f8175b60d /docs/src/pages/guides
parent155676275b1c61fb37e22fb09c4967224b2c17af (diff)
downloadastro-ff92be637ffd9a9841b771e94d8deef1c62422cb.tar.gz
astro-ff92be637ffd9a9841b771e94d8deef1c62422cb.tar.zst
astro-ff92be637ffd9a9841b771e94d8deef1c62422cb.zip
add "astro preview" command (#1226)
* add "astro preview" command * Update green-buttons-reflect.md * Update cli-reference.md
Diffstat (limited to 'docs/src/pages/guides')
-rw-r--r--docs/src/pages/guides/deploy.md3
1 files changed, 2 insertions, 1 deletions
diff --git a/docs/src/pages/guides/deploy.md b/docs/src/pages/guides/deploy.md
index de8aa69b6..ff0c30d95 100644
--- a/docs/src/pages/guides/deploy.md
+++ b/docs/src/pages/guides/deploy.md
@@ -13,7 +13,8 @@ The following guides are based on some shared assumptions:
{
"scripts": {
"start": "astro dev",
- "build": "astro build"
+ "build": "astro build",
+ "preview": "astro preview"
}
}
```
s='logmsg'> * Current stage of the log files. Test need to be done as well as formatting of times. * Finished testing. All altered classes test pass along with my additions * Updated the replacer package to print the units as well. May take out. * Changed the time units to be within the rules. Fixed the test as well. * Fixed some tests, updated the readme, fixed the replacer class. * Updates of standardizing only to seconds in response duration. Need to revert README. * Reverted readme. * Added a small test in new replacer. * Changed replacer to inline the strconv for duration. 2018-06-05plugin/forward: fix alignment for sync.Atomic (#1855)Gravatar Miek Gieben 1-3/+3 These must be alligned on 8 bytes, in Go this means putting them first in the struct (AFAICT). 2018-06-05Update Makefile.release for docker image build (#1856)Gravatar Yong Tang 1-15/+0 This fix update Makefile.release for docker image build on different platforms. Signed-off-by: Yong Tang <yong.tang.github@outlook.com> 2018-06-04Docker: drop alpine (#1843)Gravatar Miek Gieben 1-3/+6 * Docker: drop alpine Create a multistage docker build image that uses debian to install certs and then create the final image by using FROM: scratch. This creates a (slightly) smaller images and drops busybox and alpine. * Even less copying 2018-06-02Fix presubmit (#1850)Gravatar Miek Gieben 2-15/+15 Uppercase these test cases as well. 2018-06-02presubmit: Check errorf as well (#1845)Gravatar Miek Gieben 19-52/+57 Uppercase all these test errors as well. And extend the presubmit to check for these in the future. Also do a slightly smarter grep to only get t.<something>. as (because dump regexp) this also grep over non test files.