From 60c67392314dd385678668194f25b13620727e6b Mon Sep 17 00:00:00 2001 From: Correl Roush Date: Mon, 31 Aug 2020 00:22:18 -0400 Subject: [PATCH] Add sample configuration file --- turntable.sample.json | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 turntable.sample.json diff --git a/turntable.sample.json b/turntable.sample.json new file mode 100644 index 0000000..6a5b7d7 --- /dev/null +++ b/turntable.sample.json @@ -0,0 +1,24 @@ +{ + "audio": { + "device": "hw:1,0", + "framerate": 48000, + "channels": 2, + "period_size": 4096 + }, + "dejavu": { + "database": { + "host": "localhost", + "user": "dejavu", + "password": "dejavu", + "database": "dejavu" + }, + "database_type": "postgres" + }, + "icecast": { + "host": "localhost", + "port": 8000, + "mountpoint": "turntable.mp3", + "admin_user": "admin", + "admin_password": "hackme" + } +}