mirror of
https://github.com/pierre42100/ComunicWeb
synced 2025-06-19 12:25:16 +00:00
Build system can build different configurations
This commit is contained in:
76
system/config/offline.config.php
Normal file
76
system/config/offline.config.php
Normal file
@ -0,0 +1,76 @@
|
||||
<?php
|
||||
/**
|
||||
* PHP offline build config for the website
|
||||
*
|
||||
* @author Pierre HUBERT
|
||||
*/
|
||||
|
||||
class Offline {
|
||||
|
||||
/**
|
||||
* API access and credentials
|
||||
*/
|
||||
const API_URL = "http://devweb.local/comunic/api/";
|
||||
const API_SERVICE_NAME = "ComunicWeb";
|
||||
const API_SERVICE_TOKEN = "12XU67pJUlnNQ";
|
||||
|
||||
/**
|
||||
* Site URL
|
||||
*/
|
||||
const SITE_URL = "http://devweb.local/comunic/v2/output/";
|
||||
|
||||
/**
|
||||
* 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 = "http://devweb.local/comunic/v2/output/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 (bundle)
|
||||
*/
|
||||
const THIRD_PARTY_BUNDLE_JS = "third_party.bundle.js";
|
||||
|
||||
/**
|
||||
* Application CSS files
|
||||
*/
|
||||
const APP_CSS = "app.css";
|
||||
|
||||
/**
|
||||
* Application JS files
|
||||
*/
|
||||
const APP_JS = "app.js";
|
||||
|
||||
/**
|
||||
* Application JS files (bundles)
|
||||
*/
|
||||
const APP_BUNDLE_JS = "app.bundle.js";
|
||||
|
||||
/**
|
||||
* Language settings
|
||||
*/
|
||||
const DEFAULT_LANGUAGE = "en";
|
||||
|
||||
/**
|
||||
* Templates settings
|
||||
*/
|
||||
const TEMPLATES_PATH = "templates/";
|
||||
}
|
Reference in New Issue
Block a user