Skip to content

Commit

Permalink
1.0.35
Browse files Browse the repository at this point in the history
  • Loading branch information
dedanirungu committed Jun 14, 2023
1 parent 06e4014 commit 36bc3ed
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 13 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"keywords": ["mybizna", "setup manager"],
"homepage": "https://github.com/mybizna/setup",
"license": "LGPL-3.0-or-later",
"version": "1.0.34",
"version": "1.0.35",
"authors": [
{
"name": "Dedan Irungu",
Expand Down
27 changes: 15 additions & 12 deletions mybizna_install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,21 @@ validate_string() {
return 0
}

#xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
#xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx

composer require mybizna/account

php artisan cache:table
php artisan session:table
php artisan vendor:publish --provider="Laravel\Sanctum\SanctumServiceProvider"
php artisan vendor:publish --provider="Mybizna\Assets\Providers\MybiznaAssetsProvider"
php artisan vendor:publish --provider="Spatie\Permission\PermissionServiceProvider"


#xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
#xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx

# Prompt for Mysql Host
read -p "Enter Mysql Host (default is localhost): " -e db_host
db_host="${name:-localhost}"
Expand Down Expand Up @@ -144,18 +159,6 @@ else
echo "Error: Kernel.php file not found at $kernel_file_path."
fi

#xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
#xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx

composer require mybizna/account

php artisan cache:table
php artisan session:table
php artisan vendor:publish --provider="Laravel\Sanctum\SanctumServiceProvider"
php artisan vendor:publish --provider="Mybizna\Assets\Providers\MybiznaAssetsProvider"
php artisan vendor:publish --provider="Spatie\Permission\PermissionServiceProvider"


#xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
#xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx

Expand Down

0 comments on commit 36bc3ed

Please sign in to comment.