You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flagon.apache.org by po...@apache.org on 2022/06/19 15:21:30 UTC

[incubator-flagon] branch master updated: updates README for site deployment instructions

This is an automated email from the ASF dual-hosted git repository.

poorejc pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-flagon.git


The following commit(s) were added to refs/heads/master by this push:
     new 8770fce  updates README for site deployment instructions
8770fce is described below

commit 8770fcec2f7694309c314bdd176aa830c49c113b
Author: poorejc <po...@apache.org>
AuthorDate: Sun Jun 19 11:21:22 2022 -0400

    updates README for site deployment instructions
---
 site/README.md | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/site/README.md b/site/README.md
index 575e010..8a8edd2 100644
--- a/site/README.md
+++ b/site/README.md
@@ -10,12 +10,13 @@ How to Build and Deploy Site
     ```
     docker run -p 8000:8000 -it flagon:site python -m SimpleHTTPServer 
     ```
-4. (Optional): To update the site, can copy the files from the container to _site.
+4. (Optional): To update the site, can copy the files from the container to `_site`.
     ```
     # First grab container id
     CID=$(docker create -p 8000:8000 -it flagon:site python -m SimpleHTTPServer)
     # Reference container id to grab built contents
     docker cp $CID:/app/_site .
     ```
-5. N.B. Make sure that any Website changes which are to be deployed to production are pushed
-   to the **asf-site** branch.
\ No newline at end of file
+    Then copy files from `_site` in `/site` folder into `/contents` folder.
+    
+    Merge new website mods at **master** branch with **asf-site** branch to push changes live.
\ No newline at end of file