@extends('install.layout') @section('title', 'Node bridge') @section('step-name', 'Node bridge') @section('content')
Step 6 of 8

Node bridge.

WaDesk sends WhatsApp through a small Node service. Point Laravel at it and set the shared token — the installer writes both env files.

@if ($errors->any())
@endif
@csrf

Where your Node bridge listens. Laravel calls this to send messages.

The port the Node bridge binds to (written to node/.env).

Auto-filled. Must match in Laravel and the Node bridge — the installer writes both.

These write to .env and node/.env automatically. The token is shared as NODE_WEBHOOK_TOKEN across both.
Back
@push('scripts') @endpush @endsection