Updated Docker build configuration

This commit is contained in:
Pierre 2018-05-09 18:37:44 +02:00
parent aefc20198c
commit 877d9b40f5

View File

@ -5,7 +5,10 @@
* @author Pierre HUBERT
*/
class Docker {
//This configuration is based on the offline configuration
require_once __DIR__."/offline.config.php";
class Docker extends Offline {
/**
* Container URL
@ -29,53 +32,8 @@ class Docker {
*/
const PROD_MODE = TRUE;
/**
* Path to assets (relative to the build folder)
*/
const PATH_ASSETS = "assets/";
/**
* Path to assets (URL)
*/
const ASSETS_URL = self::CONTAINER_URL."assets/";
/**
* Third party CSS files
*/
const THIRD_PARTY_CSS = "third_party_css.css";
/**
* Third party Javascript files
*/
const THIRD_PARTY_JS = "third_party.js";
/**
* Third party Javascript files (unminified)
*/
const THIRD_PARTY_UNMINIFIED_JS = "third_party.unminified.js";
/**
* Application CSS files
*/
const APP_CSS = "app.css";
/**
* Application JS files
*/
const APP_JS = "app.js";
/**
* Application JS files (unminifieds)
*/
const APP_UNMINIFIED_JS = "app.unminified.js";
/**
* Language settings
*/
const DEFAULT_LANGUAGE = "en";
/**
* Templates settings
*/
const TEMPLATES_PATH = "templates/";
}