ServerKade

ServerKade

Did You Know?

ServerKade means effortless cloud hosting without technical expertise.

Git Integration

GitLab | Product Documentation

Estimated reading: 5 minutes 20 views

Creating an application in ServerKade for hosting PHP scripts and projects with Git is simple. You can specify the application name, domain, system user, and other options such as PHP version and custom web root. When choosing the deployment method, you can select “Git” to easily deploy your PHP code from a Git repository. Once the application is created, ServerKade will automatically clone the repository and deploy the code. You can manage the Git deployment process from the ServerKade dashboard. ServerKade makes it easy to create and manage PHP applications with Git.

Once you have connected your server with ServerKade, you can follow the steps below to automatically install the GitLab repository on your server.

Gitlab integration

Step 1: First, you need to Integrate Git, Navigate to DashboardIntegrationGit.

Step 2: Click on the Gitlab Link Gitlab button like the image below. After that, authorize serverkade to deploy your project and connect your GitLab account with the serverkade account.

Link Gitlab

Step 3: Now, you can deploy a site from Gitlab.

Create Application

Step 1: Click on the server on which you want to create the new application.

Step 1

Step 2: You will now see the Applications option on the left-hand sidebar of the Server Panel. Click on Applications.

step 2

Step 3: You will now see the Applications table like the image below. Click on the Create button on the top right of the Applications table, as mentioned in the below image.

step 3

Step 4: After that, you will see the Create Application screen like the image below.

Application - Basic Details

Step 5: Basic Details

  • Enter the name of your application in the Application Name field.
  • Choose whether you want to use a primary domain or a test domain in the Domain field. If you select a test domain, you can change it later to a primary domain.

Application - Basic Details

Step 6: Application

After that, select Integrated Account, then select your repository Repository and select its Branch. If you want to run script after clone your repository then write a deployment script.

Step 7: Advance Options

When creating a new application in ServerKade, you have the option to either create a new system user for the application or use an existing one. A system user is a user account created on your server, which is used to manage files and permissions for your application.

In the Basic Settings section of creating an application in ServerKade, you have the option to select the PHP version for your application. ServerKade supports multiple PHP versions ranging from 7.2 to 8.3. You can choose the desired PHP version for your application.

Application - Settings

You also have the option to specify a custom webroot path for your application. By default, ServerKade sets the webroot path to /public_html for your application. However, if you want to set a custom webroot path, you can do so by entering the desired path in the “Webroot” field provided. This can be useful if you have specific requirements for the directory structure of your application.

If any changes are required, the user can go back to the respective sections and make the changes. If everything looks good, they can click on the “Create Application” button to create the application. your website must be live in next 10-15 seconds. Once your application is installed, you will be redirected to an application dashboard from which you can manage the application.

You can not perform Enable Auto Pull if your repository Type is public.

Step 8: If you want to Enable Auto Pull, then Navigate to Created Application DashboardGit.

  • Then, click on Enable as shown in the image below.

    Application - github enable

  • After that, Copy Webhook URL.
  • Next, login to your Integrated Gitlab account, and In your Selected repository, navigate to SettingsWebhooksAdd webhook, and use the following settings:
    • Payload URL: Your Copied Webhook URL
    • Content Type: application/json
    • SSL Verification: Disable (not recommended)
    • Which events would you like to trigger this webhook?: Just the push event
    • Active:: Check
  • Click Add Webhook to save your settings, and the request should start working.

    Application - github enable

  • Click on Edit, then click on Recent Deliveries tab for see your Request logs.
  • You can see your commit history from the Webhook History section.

    Application - Git History

Step 9: If you want to Checkout Branch, click on Change Branch and select the checkout branch.

Application - Gitlab

Step 10: If you want to run a Custom Script after a pull request, enter the script in the “Deployment Script” section and Save it.

Application - Gitlab

  • When the webhook receives a push request, you might want to run a Custom Script to clear some cache or upgrade your web application. You can write a script to do this command in the “Deployment Script” section.

Please use # (hashtag) for comment in Deployment Script.

  • The script will run inside your application root folder. If your deployment script includes composer and PHP command, it will use the default PHP-CLI. You must use a replacer to run a script using a different PHP version.

    Replacer

    • The replacer is where you can tell the deployment script to run a specific PHP version.
    • For example:
      {PHP70} artisan cache:clear
    • Will be translated to this:
      /usr/bin/php7.0 artisan cache:clear
    • You can always type the full path to the PHP version if you don’t want to use the replacer.