Somehow you need to run a different implementation depending on system environment
This is what i have done for one of my case
In your .env file
DOCUMENT_INTERFACE=GoogleCloud
#DOCUMENT_INTERFACE=LocalStorage
In my AppServiceProvider.php
use Illuminate\Support\Facades\App;
public function register()
{
$this->app->bind(DocumentInterface::class, function () {
...
Thursday, 31 October 2019
Thursday, 17 October 2019
Command needed when installing MySQL
MySQL command not found? Looking tru this forum https://stackoverflow.com/questions/10577374/mysql-command-not-found-in-os-x-10-7
echo 'export PATH="/usr/local/mysql/bin:$PATH"' >> ~/.bash_profile
To connect to MySQL prompt
mysql -u root -p
Change the MySQL password permanently
mysql -u root -p
ALTER USER `root`@`localhost` IDENTIFIED BY 'password', `root`@`localhost`...