-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
bb5dc33
commit 6cf8b15
Showing
1 changed file
with
13 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |