forked from 9inevolt/OverRustle
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.sample.php
More file actions
20 lines (17 loc) · 749 Bytes
/
Copy pathconfig.sample.php
File metadata and controls
20 lines (17 loc) · 749 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?php
# Copy this file to config.php and replace with your credentials
# Twitch API
# https://github.com/justintv/Twitch-API/blob/master/authentication.md
$config['twitch_client_id'] = 'client id goes here';
$config['twitch_client_secret'] = 'client secret goes here';
$config['twitch_redirect_uri'] = 'redirect uri goes here e.g. http://overrustle.com/profile';
# Redis
$config['redis'] = array(
'host' => 'localhost',
'port' => 6379,
'database' => 1); # python uses database 0
# Chat websocket config
$config['chat_host'] = 'localhost'; # overrustle.com
$config['chat_port'] = 9999; # python uses 9998
$config['chat_enable'] = false; # true to enable chat for channels
?>