40 lines
1.6 KiB
Plaintext
40 lines
1.6 KiB
Plaintext
// Play Framework Settings
|
|
|
|
// In a production environment, set the APPLICATION_SECRET environment variable to a random secret, or
|
|
// modify the value here.
|
|
play.crypto.secret = "changeme"
|
|
play.crypto.secret = ${?APPLICATION_SECRET}
|
|
|
|
play.i18n.langs = [ "en" ]
|
|
|
|
play.cache.bindCaches = ["lobby", "cardcast"]
|
|
|
|
play.modules.enabled += "massivedecks.CoreModule"
|
|
play.http.errorHandler = "massivedecks.controllers.ErrorHandler"
|
|
|
|
|
|
// Massive Decks Settings
|
|
|
|
// Canonical URL settings. These should be set in a production environment to ensure a canonical URL for the
|
|
// application. If you have multiple domains pointing to the application, you should have them redirect, or
|
|
// this will result in cross-domain requests.
|
|
// You can set the environment variables listed, or change these settings to literal values in this file.
|
|
|
|
// The protocol for the application (e.g: "https").
|
|
// Defaults to the value of the X-Forwarded-Proto header in the request, or the protocol used for the request.
|
|
md_protocol = ${?MD_PROTOCOL}
|
|
// The host for the application, including a port if needed (e.g: "www.example.com").
|
|
// Defaults to the host used in the request.
|
|
md_host = ${?MD_HOST}
|
|
// The path to the application, with a leading / (e.g: "/massivedecks").
|
|
// Defaults to "/"
|
|
md_path = ${?MD_PATH}
|
|
|
|
|
|
// The version of Massive Decks (displayed in the footer on the main page, and given in bug reports).
|
|
// md_release_version="0.1.0-beta"
|
|
|
|
// If md_release_version is unset, the git sha1 hash or short hash will be taken here, cut to 7 characters, and be
|
|
// suffixed with -dev to show a development build. If this is unset too, no version will be used.
|
|
md_git_version = ${?SOURCE_VERSION}
|