What's new announcement?

Today

Big News

2 min ago

Able Pro is Redesigned

Able Pro is completely renowed with high aesthetics User Interface.

img
Offer

2 hour ago

Able Pro is in best offer price

Download Able Pro exclusive on themeforest with best price.

img

Yesterday

Blog

12 hour ago

Featured Dashboard Template

Do you know Able Pro is one of the featured dashboard template selected by Themeforest team.?

img
Announcement

12 hour ago

Buy Once - Get Free Updated lifetime

Get the lifetime free updates once you purchase the Able Pro.

img
Skip to content

Instalasi dan Pengaturan Vinexel

  • Composerv18.17.1 atau v20.3.0 atau yang lebih baru. (v19 tidak didukung.)
  • PHPv8.3 atau yang lebih baru. (v5 tidak didukung.)
  • Golang (Opsional) – v18.17.1
  • Server Lokal – Direkomendasikan menggunakan Laragon untuk menjalankan server pengembangan, atau XAMPP (opsional) untuk pengelolaan database.
  • Editor Teks – Direkomendasikan menggunakan Visual Studio Code.
  • Terminal – Vinexel dijalankan melalui antarmuka baris perintah (Command Line Interface / CLI).
  1. Jalankan perintah berikut di terminal kamu untuk memulai wizard instalasi Vinexel melalui Composer:

    Terminal window
    composer create-project vinexel/vinexel my-project

    Kamu dapat menjalankan perintah create-project di mana saja di komputer kamu menggunakan Composer, tetapi disarankan untuk membuat proyek di dalam folder htdocs (jika menggunakan XAMPP) atau www (jika menggunakan Laragon). Tidak perlu membuat folder kosong terlebih dahulu—wizard akan otomatis membuatkannya untuk kamu.

    Jika proses instalasi berhasil, kamu akan melihat pesan sukses diikuti dengan langkah-langkah berikutnya yang direkomendasikan. Setelah proyek kamu berhasil dibuat, jalankan perintah cd untuk masuk ke direktori proyek baru kamu dan mulai menggunakan Vinexel.

  2. Setelah itu, kamu dapat menjalankan server pengembangan Vinexel dan melihat pratinjau langsung proyek kamu saat membangun aplikasi!

Edit Proyek Kamu

Bagian: Edit Proyek Kamu

Untuk melakukan perubahan pada proyek kamu, buka folder proyek di editor kode pilihan kamu. Bekerja dalam mode pengembangan dengan server dev yang sedang berjalan memungkinkan kamu melihat pembaruan pada situs secara langsung saat kamu mengedit kode.

Menjalankan Server Pengembangan Vinexel dengan Vision

Bagian: Menjalankan Server Pengembangan Vinexel

Vinexel dilengkapi dengan server pengembangan bawaan yang menyediakan semua yang kamu butuhkan untuk pengembangan proyek. Perintah vision pada CLI akan memulai server pengembangan lokal sehingga kamu dapat melihat situs baru kamu berjalan secara langsung.

Setiap template awal sudah menyertakan skrip yang dikonfigurasi untuk menjalankan vision serve. Setelah kamu masuk ke direktori proyek, gunakan terminal favorit kamu untuk menjalankan perintah ini dan memulai server pengembangan Vinexel.

Terminal window
php vision serve

Jika semuanya berjalan dengan baik, Vinexel kini akan menayangkan proyek kamu di http://localhost:4321/. Kunjungi tautan tersebut di browser kamu untuk melihat situs baru kamu!

Astro will listen for live file changes in your src/ directory and update your site preview as you build, so you will not need to restart the server as you make changes during development. You will always be able to see an up-to-date version of your site in your browser when the dev server is running.

When viewing your site in the browser, you’ll have access to the Astro dev toolbar. As you build, it will help you inspect your islands, spot accessibility issues, and more.

If you aren’t able to open your project in the browser after starting the dev server, go back to the terminal where you ran the dev command and check the message displayed. It should tell you if an error occurred, or if your project is being served at a different URL than http://127.0.0.1:8000/ by default if not with specific project port.

Configure your dev environment

Section titled Configure your dev environment

Explore the guides below to customize your development experience.

Success! You are now ready to start building awesome project with Vinexel! 🥳

Here are a few things that we recommend exploring next. You can read them in any order. You can even leave our documentation for a bit and go play in your new Astro project codebase, coming back here whenever you run into trouble or have a question.

Explore Vinexel’s Features

Section titled Explore Vinexel’s Features
Read more about the Astro CLI and the terminal commands you will use as you build with Astro.

This guide will walk you through the steps to manually install and configure a new Astro project.

If you prefer not to use our automatic create astro CLI tool, you can set up your project yourself by following the guide below.

  1. Install Vinexel

    First, install the Vinexel project dependencies inside your project.

    You’ll use these scripts later in the guide to start Astro and run its different commands.

  2. Add dependencies support if you want

    If you do intend to write TypeScript code, using Astro’s strict or strictest template is recommended. You can view and compare the three template configurations at astro/tsconfigs/.

    Create tsconfig.json at the root of your project, and copy the code below into it. (You can use base, strict, or strictest for your TypeScript template):

    tsconfig.json
    {
    "extends": "astro/tsconfigs/base"
    }

    Read Astro’s TypeScript setup guide for more information.

  3. Next Steps

    If you have followed the steps above, your project directory should now look like this:

    • Directoryapp/
      • Directory{project-1}/
          Directorycontrollers/ Directorymodels/ Directoryviews/
        • .env
      • Directory{project-2}/
          Directorycontrollers/ Directorymodels/ Directoryviews/
        • .env
      • RegisterProject.php
    • Directorypublic/
        • Directorystatic/
            Directory{project-1}/ Directory{project-2}/
      • .htaccess
      • robots.txt
      • index.php
    • Directoryrestapi/
    • Directorysystem/
    • Directoryvendor/
    • .gitignore
    • go.mod
    • go.sum
    • composer.json for package, dependencies, etc.
    • composer.lock
    • vision
  4. You can now start the Vinexel development server and see a live preview of your project while you build!

Settings