# -*- cperl -*- # "$ENV{HOME}/.gamesrc" # i.e., ~/.gamesrc # For limit-time-on-games-db.pl # Any valid Perl code can go here. # Must return true (ensure have 1; at the end). # You need to edit this with: # the hostname of the machine running the database, # The account of the user with write access to the database, # the database password of the account. use constant DEBUG => 1; use constant DBNAME => "games"; use constant DBHOST => "nicku.org"; use constant USER => "nicku"; use constant PW => "supersecretpassword"; 1;