Skip to content

Commit

Permalink
1.8.15
Browse files Browse the repository at this point in the history
  • Loading branch information
Raza9798 committed Jun 20, 2024
1 parent a4a74a4 commit 579c1ea
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
8 changes: 4 additions & 4 deletions src/Console/Commands/InitilizeCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,10 @@ class InitilizeCommand extends Command
public function handle()
{
(new Banner())->renderTitle('Installing and configuring RapidKit package...');
(new BackupController())->setup();
(new BackupController())->configureDatabaseDump();
(new TelescopeController())->setup();
(new ActivityController())->setup();
// (new BackupController())->setup();
// (new BackupController())->configureDatabaseDump();
// (new TelescopeController())->setup();
// (new ActivityController())->setup();
(new BuildController());
Artisan::call("rapid:support");
}
Expand Down
3 changes: 2 additions & 1 deletion src/Controller/BuildController.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,11 @@

use Illuminate\Routing\Controller;
use Illuminate\Support\Facades\File;
use Rapidrx\Intelmail\Controller\IntelMail;
// use Rapidrx\Intelmail\Controller\IntelMail;
use Intelrx\Rapidkit\assets\Banner;
use Intelrx\Rapidkit\assets\Helper;
use Intelrx\Rapidkit\Config\Config;
use Rapidrx\Intelmail\Controller\IntelMail;
use ZipArchive;

class BuildController extends Controller
Expand Down
2 changes: 1 addition & 1 deletion src/config/config.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

class Config
{
const VERSION = '1.8.14';
const VERSION = '1.8.15';
const ASSETS_DIR = "/src/assets";

public static function getBuildDir($levels): string
Expand Down

0 comments on commit 579c1ea

Please sign in to comment.