main-local.php 797 B

123456789101112131415161718192021222324252627
  1. <?php
  2. return [
  3. 'components' => [
  4. /**
  5. * dsn:
  6. * - mysql mysql:host=localhost;dbname=feehi
  7. * - sqlite sqlite:/feehi.db
  8. */
  9. 'db' => [
  10. 'class' => yii\db\Connection::className(),
  11. 'dsn' => 'sqlite:/feehi.db',
  12. 'username' => 'root',
  13. 'password' => '',
  14. 'charset' => 'utf8',
  15. 'tablePrefix' => "",
  16. ],
  17. 'mailer' => [
  18. 'class' => yii\swiftmailer\Mailer::className(),
  19. 'viewPath' => '@common/mail',
  20. // send all mails to a file by default. You have to set
  21. // 'useFileTransport' to false and configure a transport
  22. // for the mailer to send real emails.
  23. 'useFileTransport' => true,
  24. ],
  25. ],
  26. ];