From 27401c907059b57af8332b4a5865d411669b8e1e Mon Sep 17 00:00:00 2001 From: Pierre Date: Tue, 8 May 2018 12:45:46 +0200 Subject: [PATCH] Create Docker build configuration --- system/config/docker.config.php | 81 +++++++++++++++++++++++++++++++++ 1 file changed, 81 insertions(+) create mode 100644 system/config/docker.config.php diff --git a/system/config/docker.config.php b/system/config/docker.config.php new file mode 100644 index 00000000..3930e318 --- /dev/null +++ b/system/config/docker.config.php @@ -0,0 +1,81 @@ +/'; + + /** + * API access and credentials + */ + const API_URL = self::CONTAINER_URL."api/"; + const API_SERVICE_NAME = "client"; + const API_SERVICE_TOKEN = "token"; + + /** + * Site URL + */ + const SITE_URL = self::CONTAINER_URL; + + /** + * Site production mode + */ + 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/"; +} \ No newline at end of file