vsmov/vsmov-core

VsMov's core features

Maintainers

Package info

github.com/vsphim/vsmov-core

pkg:composer/vsmov/vsmov-core

Statistics

Installs: 0

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 0

1.0.0 2026-04-16 04:11 UTC

This package is auto-updated.

Last update: 2026-04-16 04:13:21 UTC


README

  • Laravel Framework 8.

  • PHP 7.3 or higher.

    • Configure php.ini:
    max_input_vars=100000
    
  • MySQL 5.7 or higher.

Add-on & Themes:

Installation:

  1. CD to project root and run: composer require vsmov/vsmov-core -W
  2. Configuration your database connection information in file .env
  3. Then, run command: php artisan vsmov:install
  4. Change app\Models\User:
use Vsmov\Core\Models\User as VsmovUser;

class User extends VsmovUser {
    use HasApiTokens, HasFactory, Notifiable;
    // ...
}
  1. Create new user by command: php artisan vsmov:user

  2. Remove this route definition in routes/web.php

Route::get('/', function () {
    return view('welcome');
});
  1. Run php artisan optimize:clear

Update:

  1. CD to project root and run: composer update vsmov/vsmov-core -W
  2. Then, run command: php artisan vsmov:install
  3. Run php artisan optimize:clear
  4. Clear PHP Opcache in server (if enabled)

Note

  • Configure a production environment file .env

    • APP_NAME=your_app_name
    • APP_ENV=production
    • APP_DEBUG=false
    • APP_URL=https://your-domain.com
  • Configure timezone /config/app.php

    • 'timezone' => 'Asia/Ho_Chi_Minh'
    • 'locale' => 'vi'
  • Command CMS

    • php artisan vsmov:menu:generate : Generate menu
    • php artisan vsmov:episode:change_domain : Change episode domain play stream

Command:

  • Generate menu categories & regions: php artisan vsmov:menu:generate

Reset view counter:

  • Setup crontab, add this entry:
* * * * * cd /path/to/project && php artisan schedule:run >> /dev/null 2>&1