This commit is contained in:
Simon Vieille 2019-07-25 10:48:38 +02:00
vecāks 0d77a94124
revīzija 0ed58b6449
Parakstījis: deblan
GPG atslēgas ID: 03383D15A1D31745
2 mainīti faili ar 5 papildinājumiem un 2 dzēšanām

Parādīt failu

@ -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`;

Parādīt failu

@ -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);