Compare commits

..

No commits in common. 'e05338c0f9336b50299aa1b6c06e6c768b447cdd' and 'd944d317a42deee09032b9c5696a16de5eac8d34' have entirely different histories.

@ -20,13 +20,7 @@ LOG_STACK=single
LOG_DEPRECATIONS_CHANNEL=null
LOG_LEVEL=debug
#DB_CONNECTION=sqlite
#DB_HOST=127.0.0.1
#DB_PORT=3306
#DB_DATABASE=/home/freeman/Projects/xstack/xshop2/storage/logs/open.db
#DB_USERNAME=root
#DB_PASSWORD=
DB_CONNECTION=sqlite
SESSION_DRIVER=database
SESSION_LIFETIME=9999999

@ -20,7 +20,7 @@
## Installation [ Development mode ]
## Installation
> [!IMPORTANT]
> Create new database and rename `.env.example` to `.env` then update you `.env` configs so run this commands:
@ -28,7 +28,6 @@
```bash
git clone https://github.com/4xmen/xshop.git
cd xshop
cp .env.example .env
composer install
php artisan migrate:fresh --seed
php artisan storage:link

@ -141,17 +141,6 @@ class PartSeeder extends Seeder
$part->sort = 1;
$part->save();
// -------------------------------------------------------------
$part = new Part();
$part->segment = 'products_page';
$part->part = 'ProductGridSidebar';
$part->area_id = Area::where('name', 'category')->first()->id;
$part->sort = 1;
$part->save();
// -------------------------------------------------------------

Loading…
Cancel
Save