Skip to main content

✨ Prerequisites

Ensure the following tools are installed on your system before starting:

πŸš€ Installation

Laravel Herd provides a lightweight local environment for PHP development.

Steps for Herd Installation

  1. Clone the Repository in Herd Sites Directory:
    git clone git@github.com:pushpak1300/Larasonic.git ~/Herd/larasonic
    
  2. Visit in Browser: Open your browser and navigate to:
    larasonic.test
    
Follow the manual installation steps below to complete the setup.
If you prefer not to use Docker or Herd, you can set up Larasonic manually.

Steps for Manual Setup

  1. Clone the Repository:
    git clone git@github.com:pushpak1300/Larasonic.git
    cd Larasonic
    
  2. Install Composer Dependencies:
    composer install
    
  3. Set Up Environment Variables:
    cp .env.example .env
    
  4. Setup Application:
    • You need to change the database credentials in the .env file.
    composer run setup
    
  5. Serve the Application:
    • Using Octane:
      php artisan octane:start --watch
      
    • Using the built-in PHP server:
      composer run dev
      
Your application will now be available at http://127.0.0.1:8010.
Once you’ve installed Larasonic using your preferred method, you’re ready to start building! For additional configuration and advanced features, explore the rest of the documentation.

πŸ”’ Logging into your Application

After installing Larasonic, you can use the following credentials:
email: test@example.com
password: password
⌘I