12345678910111213141516171819 |
- <?php
- $config = array(
- "siteUrl" => "",
- "allowedUsers" => array(),
- "mysql" => array(
- "host" => "127.0.0.1",
- "user" => "",
- "password" => "",
- "database" => ""
- ),
- "discord" => array(
- "clientId" => "",
- "clientSecret" => "",
- "webhook" => ""
- )
- );
- ?>
|