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.
1 parent 0d59592 commit 06d7b61Copy full SHA for 06d7b61
README.md
@@ -114,7 +114,13 @@ 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
- herd link && herd secure && herd open
+
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
*)
126
return 1
0 commit comments