This guide covers local setup for RelWave and the bridge package.
- Node.js 22 or newer
pnpm- Rust toolchain for Tauri builds
- Platform-specific build tooling for desktop packaging
- Clone the repository.
- Install the frontend dependencies.
- Install the bridge dependencies.
- Start the app in development mode.
git clone https://github.com/Relwave/relwave-app.git
cd relwave-app
pnpm install
pnpm --dir bridge install
pnpm tauri devIf you need custom local database values for the bridge, copy the template file and edit it:
copy bridge\.env.example bridge\.envThe default example values are set up for local test databases.
Use the Docker test environment when validating bridge behavior:
docker-compose -f bridge/docker-compose.test.yml up -d
cd bridge
pnpm testBuild the frontend and bridge artifacts before packaging:
pnpm build
cd bridge
pnpm buildIf you are preparing release assets, follow the existing bridge packaging scripts in bridge/package.json and the root package scripts.