Waku.org https://waku.org
Go to file
Franck Royer 648936b9ba
Document change process
2022-06-11 00:48:31 +10:00
ci change domain from wakunetwork.com to waku.org 2022-04-11 20:04:47 +02:00
src change domain from wakunetwork.com to waku.org 2022-04-11 20:04:47 +02:00
.gitignore WAKU website 2021-10-19 16:09:03 +02:00
.htaccess htaccess file 2021-11-02 14:02:31 +01:00
README.md Document change process 2022-06-11 00:48:31 +10:00
_config.yml WAKU website 2021-10-19 16:09:03 +02:00
gulpfile.js ci: add Jenkinsfile, refactor Gulp config 2022-01-18 10:07:25 +01:00
package-lock.json ci: add Jenkinsfile, refactor Gulp config 2022-01-18 10:07:25 +01:00
package.json change domain from wakunetwork.com to waku.org 2022-04-11 20:04:47 +02:00
postcss.config.js WAKU website 2021-10-19 16:09:03 +02:00
tailwind.config.js Home hero 2021-11-15 11:30:58 +01:00
yarn.lock ci: add Jenkinsfile, refactor Gulp config 2022-01-18 10:07:25 +01:00

README.md

Description

Website to Waku protocol developed by Vac Team.

Development

Install the dependencies:

yarn install

Start the development server:

yarn run devel

Go to http://localhost:4000 to view the page.

Continuous Integration

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.