Skip to content

nhirokinet/flamehaze-outlaw

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

flamehaze-outlaw

Web system as the central of flamehaze .
API specification is going to change later. Currently you should keep all the components latest.

Usage

  • The directory htdocs should be placed on document root. Remember you must edit config.php.
  • The file schema.sql indicated schema for MySQL database. Note that this delete all existing data.
  • The file sample-codes-for-test/sqldata/sample.sqldump is MySQL dump data, with the problems in にろきプロコン#1. Note that in this contest input data for problem B had a problem, and some data are deleted, leading to the lack of random input data.
  • Beware that POST request from flamehaze may JSON encodes and sends as large as 1MiB (default) text per the number of test cases in each problem. Multi byte character is expressed in \uxxxx format. Therefore, you need to configure php.ini and web server to accept 3MiB per the maximum number of test cases in one problem, plus extra data (less than 1MiB).

Example for nginx

in conf file:

        location /flamehaze-outlaw/ {
                client_max_body_size 100m;
                try_files $uri /flamehaze-outlaw/index.php$uri?$args;
        }

        location ~ /flamehaze-outlaw/.*\.php(/|$)  {
                client_max_body_size 100m;
                fastcgi_split_path_info ^(.+\.php)(/.+)$;
                fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
                fastcgi_param PATH_INFO $fastcgi_path_info;
                fastcgi_pass unix:/var/run/php5-fpm.sock;
                include fastcgi_params;
        }

Note that you need to place all contents inside flamehaze-outlaw/htdocs should be placed to htdocs. Do not forget to edit config.php .

About

Judge server for competitive programming.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published