fixed read me

update version
master v2.0.0-beta1
A1Gard 3 weeks ago
parent ce679db156
commit 9809517250

@ -18,9 +18,6 @@
- UI/UX is more specific - UI/UX is more specific
- Developer Friendlier - Developer Friendlier
## Access to xShop/v1
> [!WARNING]
> xShop/v1 available here: <a href="https://github.com/4xmen/xshop.v1">https://github.com/4xmen/xshop.v1</a>
## Installation ## Installation
@ -36,6 +33,12 @@ php artisan migrate:fresh --seed
php artisan storage:link php artisan storage:link
php artisan key:generate php artisan key:generate
php artisan serv php artisan serv
# to develop front-end
npm install -g yarn
yarn install
yarn dev
``` ```
> [!TIP] > [!TIP]
@ -48,18 +51,20 @@ php artisan serv
```bash ```bash
php artisan seeding:prepare php artisan seeding:prepare
``` ```
- Seeding image for models: [Group, Category, Post, Product, Slider] - nor copy your image folder to `database/seeders/images/`
- then: Seeding image for models: [Group, Category, Post, Product, Slider]
```bash ```bash
php artisan seeding:image Product digital php artisan seeding:image Product digital
``` ```
> First parameter is Model, Second is image seeder directory available [bag, clothe, digital, sport, posts, makeup] > First parameter is Model, Second is image seeder directory available [bag, clothe, digital, sport, posts, makeup]
> You can create your directory and put your image into new directory then use image seeder > You can create your directory and put your image into new directory then use image seeder
## Requirement ## Requirement
- php 8.3.9 [ `php-gd`, `sqlite3`, `php-soap` ] - php 8.2.x or above [ `php-gd`, `sqlite3`, `php-soap`]
- mysql or mariadb - mysql or mariadb or sqlite
- composer - composer
- recommends install imagemagick on server to more image performance
## Deploy guide ## Deploy guide
@ -71,12 +76,20 @@ git clone https://github.com/4xmen/xshop.git . # if this command not work make
cp .env.example .env cp .env.example .env
nano .env # edit your config db, url, etc. nano .env # edit your config db, url, etc.
composer install composer install
php artisan migrate php artisan migrate:fresh --seed
php artisan db:seed --class=UserSeeder
php artisan db:seed --class=SettingSeeder
nano .env # make APP_DEBUG false, APP_ENV production
php artisan storage:link php artisan storage:link
php key:generate php key:generate
npm install
php artisan client
npm run build
```
## Make your site optimize & production mode
```bash
nano .env # make APP_DEBUG false, APP_ENV production
php artisan optimize
composer install --optimize-autoloader --no-dev composer install --optimize-autoloader --no-dev
``` ```
@ -106,7 +119,7 @@ php artisan make:part PartName segmentName
Optimize client assets, `scss`,`js`,`css` Optimize client assets, `scss`,`js`,`css`
```bash ```bash
php artisan client php artisan client
``` ```
### theme parts file ### theme parts file
@ -130,6 +143,12 @@ php artisan client
![5](https://raw.githubusercontent.com/A1Gard/xshop-installer-assets/master/screenshots/xshop-screenshot5.jpg) ![5](https://raw.githubusercontent.com/A1Gard/xshop-installer-assets/master/screenshots/xshop-screenshot5.jpg)
## Access to xShop/v1
> [!WARNING]
> xShop/v1 available here: <a href="https://github.com/4xmen/xshop.v1">https://github.com/4xmen/xshop.v1</a>
<p align="center"> <p align="center">
Developed With Love ! ❤️ Developed With Love ! ❤️
</p> </p>

@ -16,7 +16,7 @@ return [
*/ */
'name' => env('APP_NAME', 'Laravel'), 'name' => env('APP_NAME', 'Laravel'),
'version' => env('APP_VERSION', '2.0.0-alpha'), 'version' => env('APP_VERSION', '2.0.0-beta'),
/* /*
|-------------------------------------------------------------------------- |--------------------------------------------------------------------------

Loading…
Cancel
Save