mirror of
https://koodu.h-i.works/projects/thebadspace
synced 2025-05-06 14:41:02 -05:00
create env after install
the creation of base .env file that stores global variables for the app need to be automated, so it's created after composer install automatically instead of issueing and additional command
This commit is contained in:
parent
3e937c5083
commit
bfce3c82ec
@ -71,7 +71,11 @@
|
|||||||
],
|
],
|
||||||
"post-create-project-cmd": [
|
"post-create-project-cmd": [
|
||||||
"@php artisan key:generate --ansi"
|
"@php artisan key:generate --ansi"
|
||||||
]
|
],
|
||||||
|
"post-install-cmd": [
|
||||||
|
"php -r \"copy('.env.example', '.env');\"",
|
||||||
|
"php artisan key:generate"
|
||||||
|
]
|
||||||
},
|
},
|
||||||
"extra": {
|
"extra": {
|
||||||
"laravel": {
|
"laravel": {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user