From 185b4f10447fd065420a87759f90db1ccf1cb964 Mon Sep 17 00:00:00 2001 From: Jim Whitescarver Date: Sat, 10 Dec 2022 16:22:21 -0500 Subject: [PATCH 1/4] Update README.md --- README.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/README.md b/README.md index 5ab0693..0107682 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,17 @@ # requirements - run as a github site - serve markdown and html pages +- onboard ans support cooperators - active rholang text box like rgov - rholang componants: fields, code, pragma? in rholang directory +- markdown macros - macrhobot integration +- personal, group and global pages +##build +yarn add cmark-gfm-js +yarn install + +node md2html.js pages/filr.md >html/file.html +##Run +node web.jw + +Browse to localhos:8080/?page=file From 5733e2d8012e2b7cdc46a4581e013b90f58822d7 Mon Sep 17 00:00:00 2001 From: Jim Whitescarver Date: Sat, 10 Dec 2022 17:09:46 -0500 Subject: [PATCH 2/4] Update README.md --- README.md | 26 +++++++++++++++++--------- 1 file changed, 17 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 0107682..85af806 100644 --- a/README.md +++ b/README.md @@ -1,17 +1,25 @@ # requirements -- run as a github site -- serve markdown and html pages -- onboard ans support cooperators -- active rholang text box like rgov -- rholang componants: fields, code, pragma? in rholang directory -- markdown macros - macrhobot integration -- personal, group and global pages -##build +- [ ] run as a github site +- [x] serve markdown and html pages +- [ ] tell who we are +- [ ] onboard and support cooperators + - how to participate (OC, discord, consider.it, github) + - using rev (metamask, links to actions) +- [ ] active rholang text box like rgov +- [ ] rholang componants: fields, code, pragma? in rholang directory +- [ ] on chain contnt +- [ ] markdown macros - macrhobot integration +- [ ] personal, group and global pages + +##Build +``` yarn add cmark-gfm-js yarn install node md2html.js pages/filr.md >html/file.html +``` ##Run +``` node web.jw - +``` Browse to localhos:8080/?page=file From 916e709180564084cf408a35460f4b2412011a48 Mon Sep 17 00:00:00 2001 From: Steve Henley <44609441+SteveHenley@users.noreply.github.com> Date: Wed, 14 Dec 2022 14:10:38 -0500 Subject: [PATCH 3/4] Corrected typos --- README.md | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/README.md b/README.md index 85af806..b4921e6 100644 --- a/README.md +++ b/README.md @@ -1,24 +1,24 @@ -# requirements -- [ ] run as a github site -- [x] serve markdown and html pages -- [ ] tell who we are -- [ ] onboard and support cooperators - - how to participate (OC, discord, consider.it, github) - - using rev (metamask, links to actions) -- [ ] active rholang text box like rgov -- [ ] rholang componants: fields, code, pragma? in rholang directory -- [ ] on chain contnt -- [ ] markdown macros - macrhobot integration -- [ ] personal, group and global pages +# Requirements +- [ ] Run as a github site +- [x] Serve markdown and html pages +- [ ] Tell who we are +- [ ] Onboard and support cooperators + - How to participate (OC, discord, consider.it, github) + - Using rev (metamask, links to actions) +- [ ] Active rholang text box like rgov +- [ ] Rholang components: fields, code, pragma? in rholang directory +- [ ] On chain content +- [ ] Markdown macros - macrhobot integration +- [ ] Personal, group and global pages -##Build +## Build ``` yarn add cmark-gfm-js yarn install node md2html.js pages/filr.md >html/file.html ``` -##Run +## Run ``` node web.jw ``` From 269b28911a59a340561f03a080a8f8853f780e39 Mon Sep 17 00:00:00 2001 From: Jim Whitescarver Date: Sat, 17 Dec 2022 08:15:29 -0500 Subject: [PATCH 4/4] Create main.yml serve the html directory --- .github/workflows/main.yml | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..5661508 --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,5 @@ +name: Deploy + uses: peaceiris/actions-gh-pages@v3 + with: + github_token: ${{ secrets.GITHUB_TOKEN }} + publish_dir: ./html