]> git.sesse.net Git - remoteglot/blob - config.pm
Add support for fetching move history from FICS (entirely from scratch every time...
[remoteglot] / config.pm
1 # Default configuration. Copy this file to config.local.pm if you want
2 # to change anything instead of modifying this (so you won't have to make
3 # changes in git).
4
5 package remoteglotconf;
6
7 our $server = "freechess.org";
8 our $nick = "SesseBOT";
9 our $target = "GMCarlsen";  # FICS username or HTTP to a PGN file.
10 our $json_output = "/srv/analysis.sesse.net/www/analysis.json";
11
12 our $engine_cmdline = "./stockfish";
13 our %engine_config = (
14 #       'NalimovPath' => '/srv/tablebase',
15         'NalimovUsage' => 'Rarely',
16         'Hash' => '1024',
17 #       'MultiPV' => '2'
18 );
19
20 # Separate engine for multi-PV; can be undef for none.
21 our $engine2_cmdline = undef;
22 our %engine2_config = (
23 #       'NalimovPath' => '/srv/tablebase',
24         'NalimovUsage' => 'Rarely',
25         'Hash' => '1024',
26         'Threads' => '8',
27 );
28
29 our $uci_assume_full_compliance = 0;                    # dangerous :-)
30 our $update_max_interval = 1.0;
31 our @masters = (
32         'Sesse',
33 );
34
35 our $tb_serial_key = undef;
36
37 eval {
38         require 'config.local.pm';
39 };