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
5 package remoteglotconf;
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 our $json_history_dir = "/srv/analysis.sesse.net/www/history/"; # undef for none.
13 our $engine_cmdline = "./stockfish";
14 our %engine_config = (
15 # 'NalimovPath' => '/srv/tablebase',
16 'NalimovUsage' => 'Rarely',
21 # Separate engine for multi-PV; can be undef for none.
22 our $engine2_cmdline = undef;
23 our %engine2_config = (
24 # 'NalimovPath' => '/srv/tablebase',
25 'NalimovUsage' => 'Rarely',
30 our $uci_assume_full_compliance = 0; # dangerous :-)
31 our $update_max_interval = 1.0;
36 # ChessOK serial key (of the form NNNNN-NNNNN-NNNNN-NNNNN-NNNNN-NNNNN)
37 # for looking up 7-man tablebases; undef means no lookup. Note that
38 # you probably need specific prior permission to use this.
39 our $tb_serial_key = undef;
42 require 'config.local.pm';