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 abe45cb commit 73b43eaCopy full SHA for 73b43ea
1 file changed
build/before_install.sh
@@ -40,8 +40,11 @@ fi
40
41
#
42
# set up memory
43
+# Need to setup MySQL for the debug part
44
45
if [ "$DB" == "memory" ] ; then
46
echo "Setting up in memory sqlite ..."
47
+ mysql -u root -e "CREATE DATABASE userfrosting;"
48
+ mysql -u root -e "GRANT ALL ON userfrosting.* TO 'travis'@'localhost';"
49
printf "UF_MODE=\"debug\"\nDB_DRIVER=\"mysql\"\nDB_HOST=\"localhost\"\nDB_PORT=\"3306\"\nDB_NAME=\"userfrosting\"\nDB_USER=\"travis\"\nDB_PASSWORD=\"\"\n" > app/.env
50
fi
0 commit comments