Important
Please see Project Convention before making contribution
- PHP 8.2.x or higher. (Reference)
- Node.js 20.10.0 LTS. (Reference)
- NPM 10.2.4 or higher
If you wanted a one-liner to set this project up, see One-liner Setup section
- Clone the repository and
cdinto it
git clone https://github.com/MirzaHilmi/UBTV
cd UBTV- Install Composer & Node.js packages
composer install
npm install- Create .env file from example & Generate APP Key
cp .env.example .env
php artisan key:generateUNIX-like system
git clone https://github.com/MirzaHilmi/UBTV && cd UBTV && \
composer install && npm install && \
cp .env.example .env && php artisan key:generateWindows (PowerShell)
git clone https://github.com/MirzaHilmi/UBTV; cd UBTV; composer install; npm install; cp .env.example .env; php artisan key:generate