waku.org/README.md

28 lines
1011 B
Markdown
Raw Normal View History

# Description
2021-10-19 14:09:03 +00:00
Website to Waku protocol developed by [Vac Team](https://vac.dev/).
2021-10-19 14:09:03 +00:00
# Development
2021-10-19 14:09:03 +00:00
Install the dependencies:
```bash
yarn install
```
Start the development server:
2021-10-19 14:09:03 +00:00
```bash
yarn run devel
```
Go to [http://localhost:4000](http://localhost:4000) to view the page.
# Continuous Integration
2021-10-19 14:09:03 +00:00
- `develop` branch is pushed to [dev.waku.org](https://dev.waku.org) via [this CI Job](https://ci.status.im/job/website/job/dev.waku.org/)
- `master` branch is pushed to [waku.org](https://waku.org) via [this CI Job](https://ci.status.im/job/website/job/waku.org/)
2022-06-10 14:48:31 +00:00
# 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](https://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`.