One-Click project Setup for MyHospitalNow

@if(session('success'))
Success!
{{ session('success') }}
@endif @if(session('error'))
Error!
{{ session('error') }}
@endif @if ($errors->any())
Error Details:
@foreach ($errors->all() as $error)

{{ $error }}

@endforeach
@endif

How to Install MyHospitalNow Microservices?

Follow these steps to set up all microservices automatically:

  1. Ensure you have access to MyHospitalNow GitHub repositories.
  2. Enter the **installation path** where you want to save all microservices.
  3. Click the **"Start Installation"** button.
  4. The system will automatically:
    • Clone all **MyHospitalNow microservices** repositories from GitHub.
    • Install all required **Composer dependencies** for each microservice.
    • Copy `.env.example` to `.env` and set up environment variables.
    • Generate an application key for each service.
    • Run database migrations and seed default data.
    • Clear and cache the Laravel configuration.
  5. Once the installation is completed, open the **project folder** and navigate to any microservice.
  6. Run the following command in the microservice directory:
  7. php artisan serve
  8. Access the microservice at:
    http://127.0.0.1:8000

Note: Make sure you have **Git, Composer, and PHP 8+** installed on your system before running the setup.

Enter Installation Path

@csrf