Skip to content

Commit

Permalink
upated readme
Browse files Browse the repository at this point in the history
  • Loading branch information
A1Gard committed Oct 29, 2024
1 parent d1ee8fe commit 2a77148
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 3 deletions.
28 changes: 25 additions & 3 deletions README-fa.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ yarn dev
> اطلاعات ورود اولیه : `[email protected]` (به عنوان توسعه دهنده) یا `[email protected]` (به عنوان مدیر) و
> گذرواژه : `password`
## افزودن تصاویر نممونه
## افزودن تصاویر نمونه

- دانلود و آماده‌سازی تصاویر

Expand All @@ -62,8 +62,9 @@ php artisan seeding:prepare
```
</div>

- nor copy your image folder to `database/seeders/images/`
- then: Seeding image for models: [Group, Category, Post, Product, Slider]

- ویا تصاویر خود را با پوشه مورد نظر در این مسیر کپی کنید: `database/seeders/images/`
- سپس یکی از مدل ها دلخواه را seed image کنید: [Group, Category, Post, Product, Slider]

<div dir="ltr">

Expand Down Expand Up @@ -114,6 +115,27 @@ composer install --optimize-autoloader --no-dev
```
</div>

## اضافه کردن cron job

جهت اجرا کامل برنامه ها زمان‌دار فروشگاه باید یک دستور زیر رو بزنید:

<div dir="ltr">

```bash
crontab -e
```
</div>

و این خط رو اضافه کنید:

<div dir="ltr">

```bash
* * * * * cd /home/[yourusername]/[your-public-html-project-root] && php artisan schedule:run >> /dev/null 2>&1
```
</div>


## ساختن xController

درواقع xController یک کنترولر بسیار پیشرفته با همراه لاگ و CRUD برای توسعه آسان است با فرض زیر:
Expand Down
14 changes: 14 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,20 @@ php artisan optimize
composer install --optimize-autoloader --no-dev
```

## Add cron job

You must add crontab for your project:

```bash
crontab -e
```

Add this line:
```bash
* * * * * cd /home/[yourusername]/[your-public-html-project-root] && php artisan schedule:run >> /dev/null 2>&1
```


## make xController

Controller with log and semi-automatic CURD with logs
Expand Down

0 comments on commit 2a77148

Please sign in to comment.