Commit Graph

58 Commits

Author SHA1 Message Date
rennokki d694bc06cc
[9.x] Added support for easy development configuration in bootstrap.js (#5900)
* Added support for easy development configuration in bootstrap.js

* Added extra variables for existing configuration in broadcasting

* Update bootstrap.js

* Setting default for empty variable

* Update .env.example

* Update .env.example

Co-authored-by: Taylor Otwell <taylor@laravel.com>
2022-06-24 13:35:29 -05:00
Jess Archer 86b4b1b656
[9.x] Vite (#5904)
* Use Vite

* Gitignore Vite build directory

* Use CSS entry points

* Update plugin

* Linting

* Update plugin
2022-06-22 13:07:47 -05:00
Taylor Otwell 20b7e19a65 add default address 2022-02-14 12:25:37 -06:00
Reza Amini 409992eed0
[9.x] Make .env.example sync with new changes (#5757)
In this PR #5568  the key has been changed!
2022-01-02 12:19:56 -06:00
Nuno Maduro 1980ca13ea
[8.x] Logs deprecations instead of treating them as exceptions (#5711)
* Logs deprecations instead of treating them as exceptions

* formatting

Co-authored-by: Taylor Otwell <taylorotwell@gmail.com>
2021-10-19 08:42:24 -05:00
Taylor Otwell c5d38d469a update skeleton for filesystem tweaks to make sail usage easier 2021-05-18 17:01:26 -05:00
Taylor Otwell 3b2ed46e65 update variables 2020-12-12 08:47:22 -06:00
Taylor Otwell 34368a4fab revert change 2020-12-08 09:45:05 -06:00
Taylor Otwell a895748980 update env file for sail 2020-12-08 09:04:09 -06:00
Ali Shaikh 6bfe68365d
[8.x] Added 'LOG_LEVEL' env variable in .env.example (#5445)
* Added 'LOG_LEVEL' env variable in .env.example

Added 'LOG_LEVEL' env variable in .env.example to be consistant with the change in [#5442](https://github.com/laravel/laravel/pull/5442)

* Update .env.example

Co-authored-by: Dries Vints <dries@vints.io>
2020-10-09 07:40:20 -05:00
Dries Vints b1f35786eb
Merge branch 'master' into develop 2020-01-14 17:52:04 +01:00
Taylor Otwell 61ec16fe39 work on mail configuration file 2020-01-08 17:10:37 -06:00
Taylor Otwell 76d822768d update mail configuration file 2020-01-08 17:01:42 -06:00
Aimeos eca7bc7d66
Use file session driver again 2020-01-08 12:44:22 +01:00
Anton Komarev b2734a9c31 Add MAIL_FROM_ADDRESS & MAIL_FROM_NAME to .env file (#5180) 2019-12-18 11:17:32 -06:00
Taylor Otwell f48e2d500c change some default settings 2019-12-13 22:42:46 -06:00
Taylor Otwell 6f3d68f67f use generic default db config 2019-06-04 08:10:26 -05:00
Taylor Otwell f84a69ee85 add bucket to env example 2019-02-26 16:37:18 -06:00
Taylor Otwell ff4f40fbab set default region 2019-02-26 14:47:40 -06:00
Taylor Otwell 87667b25ae update env variable stubs 2018-12-18 09:09:55 -06:00
Taylor Otwell c30adc88c1 adjust variable name 2018-03-13 13:38:47 -05:00
Taylor Otwell b78f5bd6e9 change env example 2018-01-26 14:42:08 -06:00
Taylor Otwell 2db1e0c5e8 add mix keys to example 2018-01-26 09:51:03 -06:00
Taylor Otwell acabdff2e3 update log configuration file 2018-01-04 15:28:26 -06:00
Taylor Otwell a32af97ede
Update .env.example 2017-12-24 08:11:41 -06:00
Mohamed Said 84b126d90d include cluster in pusher config 2017-12-24 13:22:35 +02:00
Caleb Porzio 084f100045 Load config.session.lifetime from env file 2017-10-04 09:52:03 -04:00
Matthew Davis 323e553f33 Make app name configurable in environment file 2017-04-03 20:07:41 +01:00
Ben Sampson 01fa7e37db Mailtrap now reference smtp. for their host value. 2017-03-17 16:18:18 +00:00
Theo Kouzelis 1a5f5c6159 [5.4] Change PUSHER enviroment variable names 2017-01-18 20:56:57 +00:00
Taylor Otwell 7b3e884757 Revert "[5.4] Change PUSHER enviroment variable names" 2017-01-04 15:39:53 -06:00
Theo Kouzelis de750d9ffb Change PUSHER enviroment variable names
pusher.com's copy and paste .env snippet uses enviroment variables that
all start with "PUSHER_APP". This commit brings the config files in line
with pusher.com
2017-01-04 00:29:19 +00:00
Роман Сохарев 9c7fad23e7 Change .env PUSHER_* params order
jsut same order ![](http://dl2.joxi.net/drive/2016/08/25/0005/0117/381045/45/81e6171678.jpg)
2016-08-25 05:57:45 +07:00
Taylor Otwell 268953862f fix order 2016-08-19 16:24:19 -05:00
Frank Sepulveda 8998cf5533 Add BROADCAST_DRIVER on .env
Having pusher keys, the file should contain the key for the broadcast also.
2016-08-19 10:42:01 -07:00
Taylor Otwell ffd7ad912e Revert recent changes to env file. 2016-08-19 07:20:12 -05:00
Taylor Otwell 655dbadd1e tweaking default setup 2016-08-11 14:47:29 -05:00
Taylor Otwell 196c267562 resolve conflicts and clean up file 2016-08-04 08:21:57 -05:00
Phil Bates bcf3935071 Wrap .env.example variable values in quotes
When the developer copies .env.example to .env they are unlikely to
add quotes to the values in .env. When the developer needs to
set the value of an environment variable to a value containing a
space, as none of the existing values in .env are quoted, the
developer is unlikely to wrap this new value with spaces in quotes.
This will result in an error, as The vlucas/phpdotenv library throws
an error when setting an environment variable to a value with a space.

Quote all default environment variables by default, reducing the
likelihood of the developer ever receiving the error relating to
environment variables needing to be quoted when they contain spaces.

This excludes true, null etc. even though wrapping them in quotes
would still result in the desired behaviour, as it is more intuitive
to see these special types not wrapped in quotes.

The current default values in .env.example don't contain any spaces,
so this commit will make no difference out of the box; its only
purpose is to help out the developer further down the line on the day
when they need to set an environment variable to a value containing
spaces.

Also, the vlucas/phpdotenv library docs currently uses quoted
variables in every example, so quoting .env.example's values will lead
to more consistency with those docs. This will likely stop any
confusion for the developer when reading the vlucas/phpdotenv docs.

See laravel/framework#14586, laravel/docs#2223
2016-08-02 13:55:08 +01:00
crynobone 007c0190a3 [5.2] Remove default APP_KEY value
Signed-off-by: crynobone <crynobone@gmail.com>
2016-08-02 08:09:41 +08:00
Taylor Otwell 767801a317 working on formatting 2016-06-04 09:37:32 -05:00
Michael Dyrynda 7259c265e6 Add application log level configuration
This config option ties in with changes in fbd6e77 that were tagged in
v5.2.35 of the framework.
2016-06-04 09:58:04 +09:30
Michael Burton fb0f915d4b Update .env.example
add DB_CONNECTION as env variable - it is already checked for in config/database.php
2016-03-25 11:53:57 +00:00
TGM 9fc55e8464 Added DB_PORT as a default enviroment variable 2016-03-01 14:29:05 +02:00
Aden Fraser 278c41887c APP_URL added to Environment Configuration 2016-02-17 23:29:24 +00:00
jspringe 2b1cc83171 Changed localhost to 127.0.0.1 2016-01-28 13:42:43 -05:00
Taylor Otwell 4fba29c0ec fix problems 2015-12-07 12:03:49 -06:00
Cory Fowler a33c66cf47 changed redis support to load config from env 2015-12-01 14:15:22 -08:00
Jonathan Torres fef3aa0709 Newline. 2015-07-17 23:27:24 +00:00
Sinan Eldem fad5c6ee9b support for unencrypted mail server usage like mailcatcher.me 2015-03-04 11:26:14 +02:00