mirror of
https://github.com/FreshRSS/FreshRSS.git
synced 2026-05-15 18:53:57 -04:00
En particulier pour stocker le numéro de version de FreshRSS utilisé entre autres par https://github.com/marienfressinaud/FreshRSS/issues/174 et centraliser les constantes de chemins Implémente https://github.com/marienfressinaud/FreshRSS/issues/271
11 lines
461 B
PHP
11 lines
461 B
PHP
<?php
|
|
define('FRESHRSS_VERSION', '0.7-dev');
|
|
define('FRESHRSS_WEBSITE', 'http://marienfressinaud.github.io/FreshRSS/');
|
|
|
|
// Constantes de chemins
|
|
define ('PUBLIC_PATH', realpath (dirname (__FILE__) . '/public'));
|
|
define ('LIB_PATH', realpath (dirname (__FILE__) . '/lib'));
|
|
define ('APP_PATH', realpath (dirname (__FILE__) . '/app'));
|
|
define ('LOG_PATH', realpath (dirname (__FILE__) . '/log'));
|
|
define ('CACHE_PATH', realpath (dirname (__FILE__) . '/cache'));
|