Skip to content

Latest commit

 

History

History
106 lines (85 loc) · 3.34 KB

kinsta.mdx

File metadata and controls

106 lines (85 loc) · 3.34 KB
title description type i18nReady
Deploy your Astro Site to Kinsta Application Hosting
How to deploy your Astro site to the web on Kinsta Application Hosting.
deploy
true

import { Steps } from '@astrojs/starlight/components';

You can use Kinsta Application Hosting to host an Astro site on their cloud hosting.

Configuring your Astro project

Static hosting

:::tip[Looking for an example?] Check out the official Kinsta Application Hosting Starter project for Astro! :::

To host your project on Kinsta Application Hosting, you need to:

  • Include a name field in your package.json. (This can be anything, and will not affect your deployment.)
  • Include a build script in your package.json. (Your Astro project should already include this.)
  • Install the serve package and set the start script to serve dist/.

Here are the necessary lines in your package.json file:

{
  "name": "anything", // This is required, but the value does not matter.
  "scripts": {
    "dev": "astro dev",
    "start": "serve dist/",
    "build": "astro build",
    "preview": "astro preview",
    "astro": "astro"
  },
  "dependencies": {
    "astro": "^2.2.0",
    "serve": "^14.0.1"
  },
}

SSR

:::tip[Looking for an example?] Check out the official Kinsta Application Hosting Starter project for Astro SSR! :::

To host your project on Kinsta Application Hosting, you need to:

  • Include a name field in your package.json. (This can be anything, and will not affect your deployment.)
  • Include a build script in your package.json. (Your Astro project should already include this.)
  • Install the @astrojs/node package and set the start script to node ./dist/server/entry.mjs.
  • Set the astro.config.mjs to use @astrojs/node and to use host: true.

Here are the necessary lines in your package.json file:

{
  "name": "anything", // This is required, but the value does not matter.
  "scripts": {
    "dev": "astro dev",
    "start": "node ./dist/server/entry.mjs",
    "build": "astro build",
    "preview": "astro preview",
    "astro": "astro"
  },
  "dependencies": {
    "astro": "^2.2.0",
    "@astrojs/node": "^5.1.1"
  },
}

Here are the necessary lines in your astro.config.mjs file:

  import { defineConfig } from 'astro/config';
  import node from "@astrojs/node";

  export default defineConfig({
    output: 'server',
    adapter: node({
      mode: "standalone"
    }),
    server: {
      host: true
    }
  });

How to deploy

Once your project's GitHub repository is connected, you can trigger manual deploys to Kinsta Application Hosting in the MyKinsta Admin Panel. You can also set up automatic deployments in your admin panel.

Configuring a new Kinsta application

1. Go to the [My Kinsta](https://my.kinsta.com/) admin panel.
  1. Go to the Applications tab.

  2. Connect your GitHub repository.

  3. Press the Add service > Application button.

  4. Follow the wizard steps.

  5. Your application is deployed.