Waku.org https://waku.org
Go to file
amir houieh ee5111cb24
Update privacy-policy.md
2023-01-19 14:24:14 +01:00
.github/workflows misc: add issues to Waku Product project board (#18) 2022-08-26 18:01:20 +10:00
.husky Migrate to acid-info (#14) 2022-06-22 11:04:59 +10:00
static-assets Migrate to acid-info (#14) 2022-06-22 11:04:59 +10:00
.cspell.json Remove docs folder, various updates (#20) 2022-11-11 17:07:35 +11:00
.gitignore Migrate to acid-info (#14) 2022-06-22 11:04:59 +10:00
README.md Update README.md 2022-08-03 12:01:38 +02:00
about.md Migrate to acid-info (#14) 2022-06-22 11:04:59 +10:00
config.json Update config.json 2023-01-19 14:20:12 +01:00
contribute.md Remove docs folder, various updates (#20) 2022-11-11 17:07:35 +11:00
main.md Remove docs folder, various updates (#20) 2022-11-11 17:07:35 +11:00
operator.md Migrate to acid-info (#14) 2022-06-22 11:04:59 +10:00
package.json Remove docs folder, various updates (#20) 2022-11-11 17:07:35 +11:00
platform.md Remove docs folder, various updates (#20) 2022-11-11 17:07:35 +11:00
privacy-policy.md Update privacy-policy.md 2023-01-19 14:24:14 +01:00
terms-of-use.md Create terms-of-use.md 2023-01-19 13:54:31 +01:00
yarn.lock Migrate to acid-info (#14) 2022-06-22 11:04:59 +10:00

README.md

Waku.org

Description

Content of https://waku.org website.

Practical notes

  • Please keep this repo clean and for markdown content ONLY
  • In case you have any issue with rendering, how website looks, etc, please file an issue on logos website builder.

Continuous Integration

  • develop branch is pushed to dev.waku.org via GitHub Action.
  • master branch is pushed to waku.org via GitHub Action.

Format & spelling checks

Format and spelling checks are done via npm commands.

Installation:

yarn

This will automatically install a git hook to format and check spelling at commit time. You can also trigger the commands manually:

Fix format:

yarn fix

Check spelling and format:

yarn check

Change Process

  1. Create a new working branch from develop: git checkout develop; git checkout -b my-changes,
  2. Proceed with changes, push to origin and open a Pull Request against develop,
  3. Once approved, merge pull request, check changes on dev.waku.org,
  4. Once ready to promote to live website, rebase master on develop: git checkout master; git pull master; git rebase origin/develop; git push.