config.php 368 B

1234567891011121314
  1. <?php
  2. // We choose to use Postgresql instead of Sqlite
  3. define('DB_DRIVER', 'postgres');
  4. // PostgreSQL parameters
  5. define('DB_USERNAME', 'kanboard_app');
  6. define('DB_PASSWORD', 'pot4toes!');
  7. define('DB_HOSTNAME', 'localhost');
  8. define('DB_NAME', 'kanboard_db');
  9. // Plugins
  10. define('PLUGINS_DIR', __DIR__.DIRECTORY_SEPARATOR.'plugins');
  11. define('PLUGIN_INSTALLER', true);