This project is meant to simplify deployment of a wallet connect bridge on Heroku.
- Clones original wallet connect monorepo (cannot use git submodule because of Heroku Build API read here for more details)
- Define an Heroku minimal config through App.json
- Runs node through PM2
Note that you can still pass whathever environment variable WC Relay server accepts (for instance WAKU_URL).
Run redis locally on port 6379 or pick a cloud managed instance.
Then run the relay server
yarn install
yarn build
REDIS_URL=redis://localhost:6379 yarn start
Then check at http://localhost:5555/hello
Feel free to open issues and pull requests.