Skip to content

Commit

Permalink
Updated .env.example
Browse files Browse the repository at this point in the history
  • Loading branch information
prateekprshr-nith committed May 16, 2016
1 parent bb5dc33 commit 6cf8b15
Showing 1 changed file with 13 additions and 9 deletions.
22 changes: 13 additions & 9 deletions .env.example
Original file line number Diff line number Diff line change
@@ -1,30 +1,34 @@
APP_ENV=local
APP_DEBUG=true
APP_ENV=production
APP_DEBUG=false
APP_KEY=NPrHEJHh5hUYURbzBWSzmqL2O1hHptbo
APP_DIR=/path/to/app/directory

# Replace with your database connection credentials
DB_HOST=127.0.0.1
DB_DATABASE=yourdb
DB_USERNAME=yourusername
DB_PASSWORD=yourpassword
DB_USERNAME=yourdbusername
DB_PASSWORD=yourdbpassword

# Replace with the IP of admin machine
ADMIN_IP=127.0.0.1

# Replace with the initial path with actual directory
IMAGE_DIR=/path/to/your/beautifulCode/storage/app/images/

# You don't need to worry about these
CACHE_DRIVER=file
SESSION_DRIVER=file
QUEUE_DRIVER=sync

# You don't need to worry about these
REDIS_HOST=127.0.0.1
REDIS_PASSWORD=null
REDIS_PORT=6379

MAIL_DRIVER=log
MAIL_HOST=mailtrap.io
MAIL_PORT=2525
MAIL_USERNAME=null
MAIL_PASSWORD=null
# Replace with your mail settings
MAIL_DRIVER=smtp
MAIL_HOST=yourMailHostIP
MAIL_PORT=587
MAIL_USERNAME=yourUserName
MAIL_PASSWORD=yourPassword
MAIL_ENCRYPTION=null

0 comments on commit 6cf8b15

Please sign in to comment.