Initial working version
This commit is contained in:
commit
ec1c5958ce
33 changed files with 4547 additions and 0 deletions
41
config/default_config.json.example
Normal file
41
config/default_config.json.example
Normal file
|
|
@ -0,0 +1,41 @@
|
|||
{
|
||||
"twitch": {
|
||||
"username": "",
|
||||
"channel": "",
|
||||
"client_id": "",
|
||||
"client_secret": "",
|
||||
"token_cache_file": "data/cache/token_cache.json"
|
||||
},
|
||||
"queue": {
|
||||
"enabled": false,
|
||||
"db_file": "twitch_queue.db",
|
||||
"auto_start_consumer": false
|
||||
},
|
||||
"game_control": {
|
||||
"enabled": false,
|
||||
"mode": "direct",
|
||||
"cooldown": 2.0,
|
||||
"input_type": "keyboard",
|
||||
"commands": {
|
||||
"up": "w",
|
||||
"down": "s",
|
||||
"left": "a",
|
||||
"right": "d",
|
||||
"jump": "space",
|
||||
"attack": "j",
|
||||
"interact": "e"
|
||||
}
|
||||
},
|
||||
"features": {
|
||||
"advanced": false,
|
||||
"sounds_directory": "data/sounds",
|
||||
"points_per_message": 1,
|
||||
"points_per_minute_watched": 5,
|
||||
"voting_duration": 30
|
||||
},
|
||||
"logging": {
|
||||
"level": "INFO",
|
||||
"file": "stream-interact.log",
|
||||
"console": true
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue