Add config template for chat integration and db schema

No other meaningfull changes (I think)
It's been 7 months since last commit god I hope I didn't break anything.
This commit is contained in:
knotteye
2020-06-26 04:07:37 -05:00
parent 97d4678a0a
commit a9f1875234
8 changed files with 121 additions and 46 deletions

View File

@ -8,6 +8,9 @@ media:
record: false
ffmpeg: '<ffmpeg>'
rtmp:
port: 1935
http:
# uncomment to set HSTS when SSL is ready
#hsts: true
@ -21,4 +24,32 @@ database:
transcode:
adaptive: false
format: dash
variants: 3
variants: 3
chat:
irc:
enabled: false
server:
port: 6667
tls: false
nickname: 'SatyrChat'
username: 'SatyrChat'
sasl: false
password:
discord:
enabled: false
token:
xmpp:
enabled: false
server:
port: 5222
nickname: 'SatyrChat'
username: 'SatyrChat'
twitch:
enabled: false
username:
token:

View File

@ -13,4 +13,11 @@ CREATE TABLE user_meta(
title VARCHAR(120),
about VARCHAR(5000),
live TINYINT
);
CREATE TABLE chat_integration(
username VARCHAR(25),
irc VARCHAR(1000),
xmpp VARCHAR(1000),
twitch VARCHAR(1000),
discord VARCHAR(1000)
);