mirror of https://github.com/waku-org/waku.org.git
Waku.org
https://waku.org
72fcd1b4d4
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. |
||
---|---|---|
.github/workflows | ||
.husky | ||
static-assets | ||
.cspell.json | ||
.gitignore | ||
Jenkinsfile | ||
README.md | ||
about.md | ||
config.json | ||
contribute.md | ||
main.md | ||
operator.md | ||
package.json | ||
platform.md | ||
privacy-policy.md | ||
terms-of-use.md | ||
yarn.lock |
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
- Create a new working branch from
develop
:git checkout develop; git checkout -b my-changes
, - Proceed with changes, push to
origin
and open a Pull Request againstdevelop
, - Once approved, merge pull request, check changes on dev.waku.org,
- Once ready to promote to live website, rebase master on develop:
git checkout master; git pull master; git rebase origin/develop; git push
.