2016-01-21 13:02:45 +01:00
|
|
|
<?php
|
2016-04-26 20:42:31 +02:00
|
|
|
/**
|
2016-04-27 14:22:59 +02:00
|
|
|
* File containing global config options for the API.
|
2016-04-26 20:42:31 +02:00
|
|
|
*
|
|
|
|
* @version 1.0 Initialisation of this file
|
|
|
|
* @since 1.0 Core application's file
|
|
|
|
*
|
|
|
|
* @author Eole 'eoledev at outlook . fr'
|
|
|
|
*
|
|
|
|
*/
|
2016-01-30 11:41:45 +01:00
|
|
|
|
2016-04-26 20:42:31 +02:00
|
|
|
date_default_timezone_set('Europe/Paris');
|
|
|
|
|
|
|
|
$config = Array();
|
|
|
|
|
|
|
|
$config["modules_enabled"] = "";
|
|
|
|
$config["urlAuth"] = "http://148.60.11.31:5000/v3";
|
2016-04-27 14:22:59 +02:00
|
|
|
$config["tokenTime"] = 60; //minutes
|
2016-01-21 13:02:45 +01:00
|
|
|
?>
|
|
|
|
|
|
|
|
|