This is default featured slide 1 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.

This is default featured slide 2 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.

This is default featured slide 3 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.

This is default featured slide 4 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.

This is default featured slide 5 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.

Entri yang Diunggulkan

SQL WORKBENCH

  Kalau mau pakai SQL langsung, ini contoh: sql Salin Edit CREATE DATABASE gloriabank; USE gloriabank; CREATE TABLE users ( id BIG...

DEPLOY KE GITHUB

1. Buka Terminal / Command Line

Pastikan kamu lagi di folder project-nya.


2. Inisialisasi Git (kalau belum)

bash
git init

3. Tambahkan Semua File

bash
git add .

4. Commit Perubahan

bash
git commit -m "Update countdown script and layout"

5. Buat Repository di GitHub

  1. Buka GitHub

  2. Klik tombol New Repository

  3. Isi nama repo, lalu klik Create repository


6. Hubungkan Project Lokal ke GitHub

Ganti USERNAME dan REPO_NAME dengan punyamu:

bash
git remote add origin https://github.com/USERNAME/REPO_NAME.git

7. Push ke GitHub

bash
git branch -M main git push -u origin main

Dan udah kelar! 🎉 Sekarang project kamu udah naik ke GitHub.
Kalau ada error kayak "authentication failed", kamu bisa pakai GitHub CLI atau SSH key juga. Mau dibantuin yang itu juga?

Teteh siap bantu! 😄



***

UPDATE GITHUB

1. Tambahkan perubahan terbaru

bash
git add .

2. Commit perubahan

bash
git commit -m "Update fitur countdown dan layout"

3. Push ke GitHub

bash
git push

Udah deh, langsung ke-update di repository GitHub kamu yang sebelumnya! 🚀
Kalau ada branch lain atau kamu kerja di cabang tertentu, tinggal sesuaikan aja dengan:

bash
git push origin nama-branch

_____________________________

1. ✅ Cek koneksi SSH ke GitHub

bash
ssh -T git@github.com

Jika balasannya: Hi username! You've successfully authenticated...
berarti koneksi SSH aman.


2. 🧪 Test ulang koneksi GitHub

bash
git remote -v



______________________________


UPDATE GITHUB DARI FILE LOKAL

bash
git add . git commit -m "🔁 Update konten terbaru" git push origin master

______________________________________

INSTALL LARAVEL v.9. v.10, v.11

bash : composer create-project laravel/laravel="9.*" nama-project

cd nama-project

bash : composer install

bash : composer update

------ :
Installing dependencies from lock file (including require-dev)
Verifying lock file contents can be installed on current platform.
Nothing to install, update or remove
Generating optimized autoload files
[ini akan lama> tergatung koneksi internet, tunggu]

82 packages you are using are looking for funding.
Use the `composer fund` command to find out more!
[ini sudah selesai]

dan kembali ke cd nama-project

bash : php artisan migrate

bash : php artisan key:generate

bash : php artisan serve

- - -***

Untuk menginstal Laravel versi 9, 10, atau 11, Anda dapat mengikuti langkah-langkah berikut:GitLab OZX Craft

  1. Membuat Proyek Laravel Baru:

    • Untuk Laravel versi 9:

      bash
      composer create-project laravel/laravel="9.*" nama-proyek


    • Untuk Laravel versi 10:

      bash
      composer create-project laravel/laravel="10.*" nama-proyek


    • Untuk Laravel versi 11:

      bash
      composer create-project laravel/laravel="11.*" nama-proyek


    Gantilah nama-proyek dengan nama proyek yang Anda inginkan.

  2. Masuk ke Direktori Proyek:

    bash
    cd nama-proyek

  1. Menginstal Dependensi:

    bash
    composer install

  1. Memperbarui Dependensi:

    bash
    composer update

  1. Menjalankan Migrasi Database:

    bash
    php artisan migrate

  1. Menghasilkan Kunci Aplikasi:

    bash
    php artisan key:generate

  1. Menjalankan Server Pengembangan:

    bash
    php artisan serve

Langkah-langkah di atas diadaptasi dari panduan yang tersedia di GitLab OZX Craft.GitLab OZX Craft

Catatan:

  • Pastikan Anda telah menginstal PHP dan Composer sebelum memulai proses di atas.GitLab OZX Craft

  • Untuk informasi lebih lanjut dan pembaruan terbaru, disarankan untuk merujuk langsung ke dokumentasi resmi Laravel atau sumber terpercaya lainnya.

INSTALL FILAMENT

bash : composer require filament/filament

cek versi : php artisan filament:install


INSTALL DAISY UI

bash : npm install -D tailwindcss postcss autoprefixer
npx tailwindcss init -p

LARAVEL v.12

bashcomposer create-project laravel/laravel nama-proyek
composer create-project laravel/laravel:"10.*" nama-proyek

bash : cd nama-proyek

bashcp .env.example .env

edit file : .env

DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=laravel_db       # (atau nama database kamu)
DB_USERNAME=root             # (atau user MySQL kamu)
DB_PASSWORD=                 # (isi password jika ada)

bash : php artisan migrate

bash : php artisan key:generate

bash : php artisan serve



jika terjadi fatal error;

bash : composer install

bash : composer update


kemudian ulangi: 

bash : php artisan migrate

bash : php artisan key:generate

bash : php artisan serve

buka di browser : http://127.0.0.1:8000






_ - - - ***

INSTAL DAISY UI

✅ Cara bener install DaisyUI:

Pake perintah ini di terminal:

bash
npm install -D daisyui

Setelah itu, tambahkan plugin-nya ke file tailwind.config.js lo:

js
plugins: [require('daisyui')],

Lalu rebuild CSS lo:

bash
npm run dev

Postingan Populer

BINTANG JATUH LYRAEA

MG86

I S I itu PENTING bukan hanya ESSENSI

BINGUNG GUE , . . .

Powered By Blogger