You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -171,7 +171,7 @@ This way, I don't have to worry about the things I've mentioned, plus I gain the
171
171
172
172
- Choose to [**setup**](./scripts/setup.sh) the lara stacker first, which will install everything necessary and eventually create a [[done-setup.flag](./done-setup.flag)] file in the directory.
173
173
174
-
- Then choose to [**create**](./scripts/create.sh)your first stacked project and continue onwards...
174
+
- Then choose to either create a [**stacked**](./scripts/create.sh)laravel application or just a [**raw**](./scripts/create_raw.sh) one and continue onwards...
175
175
176
176
That's it. You'll have your first project accessible in the end (displaying the site's URL too). JUST be PATIENT! `:)`
db_name=$(echo "$db_name"| sed 's/\([[:lower:]]\)\([[:upper:]]\)/\1_\2/g'| sed 's/\([[:upper:]]\)\([[:upper:]][[:lower:]]\)/\1_\2/g'| tr '-''_'| tr '[:upper:]''[:lower:]'| sed 's/__/_/g'| sed 's/^_//')
92
+
93
+
# DB Creation
94
+
export MYSQL_PWD=$DB_PASSWORD
95
+
if mysql -u root -e "SELECT SCHEMA_NAME FROM information_schema.SCHEMATA WHERE SCHEMA_NAME='$db_name'"| grep "$db_name"> /dev/null;then
0 commit comments