]> git.sesse.net Git - remoteglot/blob - config.pm
Now make sorting click both ways.
[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 our $json_history_dir = "/srv/analysis.sesse.net/www/history/";  # undef for none.
12
13 our $engine_cmdline = "./stockfish";
14 our %engine_config = (
15 #       'NalimovPath' => '/srv/tablebase',
16         'NalimovUsage' => 'Rarely',
17         'Hash' => '1024',
18 #       'MultiPV' => '2'
19 );
20
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',
26         'Hash' => '1024',
27         'Threads' => '8',
28 );
29
30 our $uci_assume_full_compliance = 0;                    # dangerous :-)
31 our $update_max_interval = 1.0;
32 our @masters = (
33         'Sesse',
34 );
35
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;
40
41 eval {
42         require 'config.local.pm';
43 };