Guest User

Untitled

a guest
Apr 18th, 2018
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  1. APP_NAME=Laravel
  2. APP_ENV=local
  3. APP_KEY=base64:qqv8sHot0EBDj4fZXedwaxY4Xb+O4ynEzLgyKTLtW88=
  4. APP_DEBUG=true
  5. APP_URL=http://localhost
  6. LOG_CHANNEL=stack
  7.  
  8. DB_CONNECTION=pgsql
  9. DB_HOST=127.0.0.1
  10. DB_PORT=5432
  11. DB_DATABASE=dbtuto
  12. DB_USERNAME=postgres
  13. DB_PASSWORD=root
  14.  
  15. 'pgsql' => [
  16. 'driver' => 'pgsql',
  17. 'host' => env('DB_HOST', '127.0.0.1'),
  18. 'port' => env('DB_PORT', '5432'),
  19. 'database' => env('DB_DATABASE', ''),
  20. 'username' => env('DB_USERNAME', ''),
  21. 'password' => env('DB_PASSWORD', ''),
  22. 'charset' => 'utf8',
  23. 'prefix' => '',
  24.  
  25. 'schema' => 'dbtutoschema',
  26. 'sslmode' => 'prefer',
  27. ],
Add Comment
Please, Sign In to add comment