Skip to content

Commit ad7378a

Browse files
Update docs to use www.laracorekit.com
Replace references to the old demo host and vhost paths with www.laracorekit.com across docs. Changes update allowed_hosts, Plesk cron/scheduler commands, SSH targets, vhosts paths, explicit PHP command examples, GitHub Actions deploy path and DEMO_SERVER_HOST secret, manual deployment steps, demo checklist, and the UI showcase Live URL.
1 parent a873fce commit ad7378a

2 files changed

Lines changed: 21 additions & 21 deletions

File tree

docs/deployment/demo-setup.md

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ DEMO_USER_PASSWORD=User@123
211211
// config/demo.php
212212

213213
'allowed_hosts' => [
214-
'laracorekit.mobrilz.digital', // Your demo domain
214+
'www.laracorekit.com', // Your demo domain
215215
'localhost',
216216
'127.0.0.1',
217217
],
@@ -240,13 +240,13 @@ The demo module automatically schedules database resets using Laravel's task sch
240240

241241
1. Log into Plesk Control Panel
242242
2. Go to **Websites & Domains**
243-
3. Select **laracorekit.mobrilz.digital**
243+
3. Select **www.laracorekit.com**
244244
4. Click **Scheduled Tasks (Cron Jobs)**
245245

246246
### Step 2: Add Laravel Scheduler Cron
247247

248248
**Settings:**
249-
- **Command**: `cd /var/www/vhosts/mobrilz.digital/laracorekit.mobrilz.digital && php artisan schedule:run >> /dev/null 2>&1`
249+
- **Command**: `cd /var/www/vhosts/laracorekit.com && php artisan schedule:run >> /dev/null 2>&1`
250250
- **Run**: Every minute (*/1)
251251
- **Minute**: `*`
252252
- **Hour**: `*`
@@ -267,15 +267,15 @@ which php
267267

268268
**Full command with explicit PHP version:**
269269
```bash
270-
cd /var/www/vhosts/mobrilz.digital/laracorekit.mobrilz.digital && /usr/bin/php8.2 artisan schedule:run >> /dev/null 2>&1
270+
cd /var/www/vhosts/laracorekit.com && /usr/bin/php8.2 artisan schedule:run >> /dev/null 2>&1
271271
```
272272

273273
### Step 3: Verify Cron is Running
274274

275275
**SSH into server:**
276276
```bash
277-
ssh username@laracorekit.mobrilz.digital
278-
cd /var/www/vhosts/mobrilz.digital/laracorekit.mobrilz.digital
277+
ssh username@www.laracorekit.com
278+
cd /var/www/vhosts/laracorekit.com
279279

280280
# Test schedule manually
281281
php artisan schedule:list
@@ -288,7 +288,7 @@ php artisan schedule:work
288288

289289
**Create log output (temporary for testing):**
290290
```bash
291-
cd /var/www/vhosts/mobrilz.digital/laracorekit.mobrilz.digital && php artisan schedule:run >> storage/logs/cron.log 2>&1
291+
cd /var/www/vhosts/laracorekit.com && php artisan schedule:run >> storage/logs/cron.log 2>&1
292292
```
293293

294294
**Check logs:**
@@ -373,13 +373,13 @@ protected function getHeaderWidgets(): array
373373

374374
1. Log into Plesk Control Panel
375375
2. Go to **Websites & Domains**
376-
3. Select **laracorekit.mobrilz.digital**
376+
3. Select **www.laracorekit.com**
377377
4. Click **Scheduled Tasks (Cron Jobs)**
378378

379379
### Step 4.2: Add Laravel Scheduler Cron
380380

381381
**Settings:**
382-
- **Command**: `cd /var/www/vhosts/mobrilz.digital/laracorekit.mobrilz.digital && php artisan schedule:run >> /dev/null 2>&1`
382+
- **Command**: `cd /var/www/vhosts/laracorekit.com && php artisan schedule:run >> /dev/null 2>&1`
383383
- **Run**: Every minute (*/1)
384384
- **Minute**: `*`
385385
- **Hour**: `*`
@@ -400,15 +400,15 @@ which php
400400

401401
**Full command with explicit PHP version:**
402402
```bash
403-
cd /var/www/vhosts/mobrilz.digital/laracorekit.mobrilz.digital && /usr/bin/php8.2 artisan schedule:run >> /dev/null 2>&1
403+
cd /var/www/vhosts/laracorekit.com && /usr/bin/php8.2 artisan schedule:run >> /dev/null 2>&1
404404
```
405405

406406
### Step 4.3: Verify Cron is Running
407407

408408
**SSH into server:**
409409
```bash
410-
ssh username@laracorekit.mobrilz.digital
411-
cd /var/www/vhosts/mobrilz.digital/laracorekit.mobrilz.digital
410+
ssh username@www.laracorekit.com
411+
cd /var/www/vhosts/laracorekit.com
412412

413413
# Test schedule manually
414414
php artisan schedule:list
@@ -421,7 +421,7 @@ php artisan schedule:work
421421

422422
**Create log output (temporary for testing):**
423423
```bash
424-
cd /var/www/vhosts/mobrilz.digital/laracorekit.mobrilz.digital && php artisan schedule:run >> storage/logs/cron.log 2>&1
424+
cd /var/www/vhosts/laracorekit.com && php artisan schedule:run >> storage/logs/cron.log 2>&1
425425
```
426426

427427
**Check logs:**
@@ -438,7 +438,7 @@ tail -f storage/logs/laravel.log
438438

439439
**SSH into server:**
440440
```bash
441-
cd /var/www/vhosts/mobrilz.digital/laracorekit.mobrilz.digital
441+
cd /var/www/vhosts/laracorekit.com
442442

443443
# Run manual reset
444444
php artisan demo:reset --force
@@ -459,7 +459,7 @@ php artisan tinker
459459
### Step 5.3: Security Checklist
460460

461461
- [ ] `DEMO_MODE=false` in local `.env`
462-
- [ ] `DEMO_MODE=true` only on `laracorekit.mobrilz.digital`
462+
- [ ] `DEMO_MODE=true` only on `www.laracorekit.com`
463463
- [ ] Verify `allowed_hosts` in config includes demo domain
464464
- [ ] Test that demo banner shows on login pages
465465
- [ ] Test that cron job runs every 30 minutes
@@ -517,7 +517,7 @@ jobs:
517517
username: ${{ secrets.DEMO_SERVER_USER }}
518518
key: ${{ secrets.DEMO_SERVER_SSH_KEY }}
519519
script: |
520-
cd /var/www/vhosts/mobrilz.digital/laracorekit.mobrilz.digital
520+
cd /var/www/vhosts/laracorekit.com
521521
522522
# Pull latest code
523523
git pull origin main
@@ -548,7 +548,7 @@ jobs:
548548
549549
**In GitHub Repository Settings Secrets:**
550550
```
551-
DEMO_SERVER_HOST = laracorekit.mobrilz.digital
551+
DEMO_SERVER_HOST = www.laracorekit.com
552552
DEMO_SERVER_USER = your-ssh-username
553553
DEMO_SERVER_SSH_KEY = (paste your private SSH key)
554554
```
@@ -587,9 +587,9 @@ php artisan demo:reset --force
587587
**Option A: Manual Deployment**
588588
```bash
589589
# SSH into server
590-
ssh username@laracorekit.mobrilz.digital
590+
ssh username@www.laracorekit.com
591591

592-
cd /var/www/vhosts/mobrilz.digital/laracorekit.mobrilz.digital
592+
cd /var/www/vhosts/laracorekit.com
593593

594594
# Pull latest code
595595
git pull origin main
@@ -670,7 +670,7 @@ sudo service cron status
670670
tail -f /var/log/cron
671671

672672
# Manually test Laravel scheduler
673-
cd /var/www/vhosts/mobrilz.digital/laracorekit.mobrilz.digital
673+
cd /var/www/vhosts/laracorekit.com
674674
php artisan schedule:work
675675
```
676676

docs/frontend/ui-showcase.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ The UI Showcase is an interactive, searchable gallery of all **175+ components**
1515
http://localhost:8000/ui-showcase
1616
```
1717

18-
**Live:** [laracorekit.mobrilz.digital/ui-showcase](https://www.laracorekit.com/ui-showcase/)
18+
**Live:** [www.laracorekit.com/ui-showcase](https://www.laracorekit.com/ui-showcase/)
1919

2020
---
2121

0 commit comments

Comments
 (0)