ComunicWeb/system/config/beta_communiquons.config.php

40 lines
706 B
PHP
Raw Normal View History

2018-05-09 16:36:53 +00:00
<?php
/**
* Online build configuration
*
* @author Pierre HUBERT
*/
//This configuration is based on the offline configuration
require_once __DIR__."/offline.config.php";
2018-05-19 08:22:24 +00:00
class Beta_communiquons extends Offline {
2018-05-09 16:36:53 +00:00
/**
* API access and credentials
*/
const API_URL = "https://api.communiquons.org/";
const API_SERVICE_NAME = "ComunicWebBeta";
const API_SERVICE_TOKEN = "txC7K5snAT";
/**
* Site URL
*/
const SITE_URL = "https://beta.communiquons.org/";
/**
* Site production mode
*/
const PROD_MODE = TRUE;
/**
* Path to assets (URL)
*/
const ASSETS_URL = "https://beta.communiquons.org/assets/";
2018-05-19 08:22:24 +00:00
/**
* Site requires https connection
*/
const FORCE_HTTPS = true;
2018-05-09 16:36:53 +00:00
}