From 6cf8b1550ee33f2f96fa417a1474cfcbbd364635 Mon Sep 17 00:00:00 2001 From: Prateek Prasher Date: Tue, 17 May 2016 02:14:20 +0530 Subject: [PATCH] Updated .env.example --- .env.example | 22 +++++++++++++--------- 1 file changed, 13 insertions(+), 9 deletions(-) diff --git a/.env.example b/.env.example index cbc0de5..2e62aee 100644 --- a/.env.example +++ b/.env.example @@ -1,12 +1,13 @@ -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 @@ -14,17 +15,20 @@ 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