27 lines
484 B
PHP
27 lines
484 B
PHP
<?php
|
|
|
|
return [
|
|
|
|
'local' => true,
|
|
'prod' => false,
|
|
'debug' => true,
|
|
|
|
'panel' => [
|
|
'menu' => require_once __DIR__ . '/menu.php',
|
|
'css' => '/assets/css/panel.css',
|
|
],
|
|
|
|
'scottboms.promote' => [
|
|
'services' => ['mastodon', 'linkedin', 'instagram'],
|
|
'mastodon' => [
|
|
'username' => 'demo',
|
|
'url' => 'mastodon.social',
|
|
],
|
|
'linkedin' => [
|
|
'username' => 'demo',
|
|
],
|
|
'instagram' => [
|
|
'username' => 'demo',
|
|
],
|
|
],
|
|
];
|