Waku.org https://waku.org
Go to file
SWB 72fcd1b4d4
fix: CNAME file issue (#29)
CNAME file was located in ./static-assets, but it should be in the
`out` directory after the build stage because the `out` folder was
created in the `build` stage.
2023-03-21 17:53:09 +00:00
.github/workflows remove vercel actions 2023-03-17 12:18:20 +01:00
.husky Migrate to acid-info (#14) 2022-06-22 11:04:59 +10:00
static-assets fix: CNAME file issue (#29) 2023-03-21 17:53:09 +00:00
.cspell.json Fix format and spelling (#22) 2023-01-19 15:25:32 +01:00
.gitignore Migrate to acid-info (#14) 2022-06-22 11:04:59 +10:00
Jenkinsfile fix: CNAME file issue (#29) 2023-03-21 17:53:09 +00:00
README.md add jenkinsfile and CNAME file 2023-03-16 16:52:06 +01:00
about.md Migrate to acid-info (#14) 2022-06-22 11:04:59 +10:00
config.json fix footer discord link (#27) 2023-02-28 15:25:28 +11:00
contribute.md Update links (#24) 2023-02-14 09:40:08 +11:00
main.md Update links (#24) 2023-02-14 09:40:08 +11:00
operator.md Update links (#24) 2023-02-14 09:40:08 +11:00
package.json Fix format and spelling (#22) 2023-01-19 15:25:32 +01:00
platform.md Update links (#24) 2023-02-14 09:40:08 +11:00
privacy-policy.md Fix format and spelling (#22) 2023-01-19 15:25:32 +01:00
terms-of-use.md Fix format and spelling (#22) 2023-01-19 15:25:32 +01:00
yarn.lock Fix format and spelling (#22) 2023-01-19 15:25:32 +01: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

  • master branch is deployed to https://waku.org by CI.
  • develop branch is deployed to https:/dev.waku.org by CI.

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.