PHP code example of pickles2 / app-burdock

1. Go to this page and download the library: Download pickles2/app-burdock library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

pickles2 / app-burdock example snippets


$ php artisan key:generate;
Application key set successfully.

php artisan migrate --seed;

cd public/;
touch ../bd_data/database.sqlite;
php ../artisan migrate --seed;
cd ..;

php artisan serve;

brew install redis;
npm install -g laravel-echo-server;

laravel-echo-server init;

redis-server --daemonize yes;
pm2 start laravel-echo-server-pm2.json;
pm2 start node/watcher.js;
nohup php artisan queue:work --timeout=30000 > /dev/null 2>&1 &;

$ php artisan db:seed --class=DummyDataSeeder