This commit is contained in:
Simon Vieille 2019-07-25 10:48:38 +02:00
rodič 0d77a94124
revize 0ed58b6449
Podepsáno: deblan
ID GPG klíče: 03383D15A1D31745
2 změnil soubory, kde provedl 5 přidání a 2 odebrání

Zobrazit soubor

@ -26,4 +26,4 @@ hook_url = "https://mattermost.example.com/hooks/1234567890abcdefghijklm"
message_template = "« %1$s » %2$s #foo #bar"
```
Then run `php index.php`.
Then run `php index.php`. You can specify the path of the configuration file using `php index.php -c /path/to/config.ini`;

Zobrazit soubor

@ -2,13 +2,16 @@
chdir(__DIR__);
$config = parse_ini_file('config.ini', true);
$options = getopt("c:");
$config = parse_ini_file($options['c'] ?? 'config.ini', true);
$feedUrl = $config['feed']['url'];
$hookUrl = $config['mattermost']['hook_url'];
$cacheFile = $config['cache']['file'];
$template = $config['mattermost']['message_template'];
if (file_exists($cacheFile)) {
$cache = json_decode(file_get_contents($cacheFile), true);