config.sample.php 309 B

1234567891011121314
  1. <?php
  2. define("Config", [
  3. 'port' => 9990,
  4. "database" => [
  5. "driver" => "pgsql",
  6. "host" => "localhost",
  7. "port" => 5432,
  8. "name" => "wikipali",
  9. "user" => "postgres",
  10. "password" => "123456",
  11. ],
  12. 'api_server' => 'https://staging.wikipali.org/api',
  13. ]);