You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
685 B

9 years ago
9 years ago
  1. <?php
  2. class Config {
  3. public static $hostname = 'quill.dev';
  4. public static $base_url = 'http://quill.dev/';
  5. public static $gaid = '';
  6. // MySQL (default)
  7. public static $dbType = 'mysql';
  8. public static $dbHost = '127.0.0.1';
  9. public static $dbName = 'quill';
  10. public static $dbUsername = 'quill';
  11. public static $dbPassword = '';
  12. // Sqlite
  13. // public static $dbType = 'sqlite';
  14. // public static $dbFilePath = './example.db';
  15. public static $jwtSecret = 'xxx';
  16. public static $twitterClientID = '';
  17. public static $twitterClientSecret = '';
  18. // https://developers.google.com/maps/documentation/javascript/get-api-key
  19. public static $googleMapsAPIKey = '';
  20. }