This app allows you to remotely control your PC, and activate pre-recorded audio files. What's it for? Your dog is at home, you see it on the CCTV, but don't want to shout at it via intercom and risk sounding stupid. What do you do? click the voice command button to play it directly on your computer.
- ngrok installed and a token properly set up; see ngrok website
- git installed on your computer
- PulseAudio server for Windows; see this video.
- self signed certificate for localhost, to allow the app to run (try
dotnet dev-certs https
, or via the browser) - github account, and a repo forked from the AdminApp github repo.
- github pages set up, and a "deploy to self" github Action configured
- When running PulseAudio on Windows, use arguments
--use-pid-file=false -D
- Specify a mount path for your audio files (mp3 and wav) with
-v host:/app/Assets/Audio
- The image uses a self-signed certificate with hard coded password. WIP.
The flow inside the script is as follows:
- launching ngrok for reverse ssh
- launching the admin API with port matching ngrok's forwarding
- dispatching a GitHub Action which
- queries ngrok's API for allocated ngrok url
- saves that url into the client repo as config file (
tunnels.json
) - rebuilds and deploys the updated PWA app
- The usage directory contains the script and icon files
- The bamba-admin-pwa contains the web app's source code. No need to compile it, that's what github Actions are for.
- The BambaAdminApi contains the server's source code. You may use it as is (using the binary in usage directory) or compile it again with your own sound files names.