NAME
Game::FaceGenerator - a web app to combina random images into faces
DESCRIPTION
Face Generator is a web application which uses random images to create faces.
On a technical level, Face Generator is a web app based on the Mojolicious framework. This class in particular uses Mojolicious::Lite.
See Mojolicious::Guides for more information.
Configuration
As a Mojolicious application, it will read a config file called face-generator.conf in the same directory, if it exists. As the default log level is 'debug', one use of the config file is to change the log level using the loglevel
key, and if you're not running the server in a terminal, using the logfile
key to set a file.
The random elements for faces are stored in the contrib directory. You can change this directory using the contrib
key. By default, the directory included with the distribution is used. Thus, if you're a developer, you probably want to use something like the following to use the files from the source directory.
{
loglevel => 'debug',
logfile => undef,
contrib => 'share',
};