ComunicWeb/system/config/communiquons.config.php
2021-02-13 15:33:17 +01:00

45 lines
763 B
PHP

<?php
/**
* comunic.io build configuration
*
* @author Pierre HUBERT
*/
//This configuration is based on the offline configuration
require_once __DIR__."/offline.config.php";
class Communiquons extends Offline {
/**
* API access and credentials
*/
const API_URL = "https://api.communiquons.org/";
const API_CLIENT_NAME = "ComunicWEB";
/**
* Site URL
*/
const SITE_URL = "https://communiquons.org/";
/**
* About website access
*/
const ABOUT_WEBSITE_URL = "https://about.communiquons.org/";
/**
* Site production mode
*/
const PROD_MODE = TRUE;
/**
* Path to assets (URL)
*/
const ASSETS_URL = "https://communiquons.org/assets/".BUILD_TIME."/";
/**
* Site requires https connection
*/
const FORCE_HTTPS = true;
}