mirror of
https://git.waldn.net/git/knotteye/satyr.git
synced 2025-09-07 12:02:44 +00:00
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:
@ -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:
|
@ -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)
|
||||
);
|
Reference in New Issue
Block a user