We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 2efa477 + c81b02c commit f0bc2fbCopy full SHA for f0bc2fb
1 file changed
README.md
@@ -114,6 +114,12 @@ function larament() {
114
local project_name="$1"
115
composer create-project --prefer-dist CodeWithDennis/larament "$project_name" || return 1
116
cd "$project_name" || return 1
117
+
118
+ # Update APP_URL in .env
119
+ if [[ -f ".env" ]]; then
120
+ sed -i '' "s|^APP_URL=.*|APP_URL=https://${project_name}.test|" .env
121
+ fi
122
123
herd link --secure && herd open
124
;;
125
*)
0 commit comments