ComunicWeb/system/config/communiquons.config.php

45 lines
763 B
PHP
Raw Normal View History

2019-12-24 10:03:26 +00:00
<?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/";
2021-02-13 14:33:17 +00:00
const API_CLIENT_NAME = "ComunicWEB";
2019-12-24 10:03:26 +00:00
/**
* 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)
*/
2021-02-12 16:06:26 +00:00
const ASSETS_URL = "https://communiquons.org/assets/".BUILD_TIME."/";
2019-12-24 10:03:26 +00:00
/**
* Site requires https connection
*/
const FORCE_HTTPS = true;
}