Skip to content

Instantly share code, notes, and snippets.

@Bellov
Last active September 14, 2018 10:55
Show Gist options
  • Save Bellov/445d921ba3a6e45d9940626ea6d6be31 to your computer and use it in GitHub Desktop.
Save Bellov/445d921ba3a6e45d9940626ea6d6be31 to your computer and use it in GitHub Desktop.
env file for laravel pgsql db
APP_ENV=local
APP_DEBUG=true
APP_KEY=base64:***************************
APP_URL=http://localhost
DB_CONNECTION=pgsql
DB_HOST=hostname
DB_PORT=5432
DB_DATABASE=Your database name
DB_USERNAME=Your database username
DB_PASSWORD=Your database password
CACHE_DRIVER=file
SESSION_DRIVER=file
QUEUE_DRIVER=sync
REDIS_HOST=127.0.0.1
REDIS_PASSWORD=null
REDIS_PORT=6379
MAIL_DRIVER=smtp
MAIL_HOST=mailtrap.io
MAIL_PORT=2525
MAIL_USERNAME=null
MAIL_PASSWORD=null
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment