🕺
LaravelSharedHosting
  • Some hints and best practices for deploying laravel on shared hosts
  • SiteGround Shared Hosting
    • Introduction
    • Prepare your Laravel project
    • Add a hosting account
    • SSH access to SiteGround space
    • Setup a mysql database
    • Adding a mail account
    • The master folder
    • Create a .env file
    • Connect your server to git
    • Create a deployment script
    • Link this site into your webserver
    • SSL Certificate
    • Setting up a CRON job
    • Running a Queue Worker
    • On-going deployments
    • Deploy from local development
    • Deploy using GitHub Actions
Powered by GitBook
On this page
  • Spatie' Remote SSH Runner
  • Build Console Command
  1. SiteGround Shared Hosting

Deploy from local development

We can trigger remote deployment over SSH

PreviousOn-going deploymentsNextDeploy using GitHub Actions

Last updated 2 years ago

With the addition of one small package and an additional artisan command we can create a php artisan build command which can be run from the local development environment and cause a deployment on the production server over SSH

Spatie' Remote SSH Runner

Install the package as a development dependency (we will never need this in production).

composer require spatie/ssh --dev

Build Console Command

app/Console/Commands/Build.php
<?php

namespace App\Console\Commands;

use Spatie\Ssh\Ssh;
use Illuminate\Console\Command;

class Build extends Command
{
    protected $signature = 'build';

    protected $description = 'Run the build command on the remote server';

    protected $server = 'gukm1051.siteground.biz';
    protected $account = 'u1119-ahcvzbcli5de';
    protected $port = 18765;
    protected $path = '~/www/mark384.sg-host.com';

    public function handle()
    {
        $this->comment('starting build on remote server');
        $this->warn('---------------------------------------------------');

        $process = Ssh::create($this->account, $this->server, $this->port)
        ->onOutput(function($type, $line){
            $this->line($line);
        })
        ->execute([
            'cd ' . $this->path,
            './build.sh'
        ]);

        $this->warn('---------------------------------------------------');

        if($process->isSuccessful()) {
            $this->comment('Successfully Finished Deployment');
            $this->newline();
            return Command::SUCCESS;
        } else {
            $this->error('Deployment failed');
            $this->newline();
            return Command::FAILURE;
        }
        
    }
}

Add this file into your project then configure lines 14 to 16 for the hosts SSH connection and then add the folder for your remote website on line 17.

Now, after making changes to your project and pushing to your repository, you can locally run

php artisan build

and your site will be deployed with feedback from the remote server on your console.

https://github.com/spatie/ssh