Server and client to send text from a device and paste it in another. Intended to be used with Whisper for Android
- Clone this repo:
git clone https://github.com/antruc/dictate.git
cd dictate
- Build client:
cd client
npm install
npm run build
cd ..
- Set up a virtual environment:
python3 -m venv env
source env/bin/activate
- Install dependencies:
pip install briefcase
- Generate a self-signed SSL certificate:
openssl req -x509 -newkey rsa:4096 -keyout server/dictate/key.pem -out server/dictate/cert.pem -sha256 -days 365 -nodes
- Build server:
briefcase create
briefcase build
Finally, start the program:
./dictate
In another device, scan the QR code to access the client interface

