Copy .env.example to .env during composer create-project script

This commit is contained in:
Chris Kankiewicz
2020-08-13 21:54:48 -07:00
parent a6eea83581
commit 5a6188355b

View File

@@ -66,7 +66,8 @@
"scripts": {
"serve": "php -S localhost:8080",
"post-create-project-cmd": [
"npm install && npm run dev"
"npm install && npm run dev",
"cp .env.example .env"
]
}
}