Skip to main content

Deploying apps to KUBE

Less than 1 minute

Deploying apps to KUBE

To deploy your app to KUBE, first ensure a KUBE is running by following the installation steps.

If using a DXOS application template:

pnpm run deploy

Otherwise, to deploy any static application:

  • Ensure the dx CLI is installed
  • Ensure there is a dx.yml file in the project root
  • Run dx app publish

The app will be accessible in a browser at http://<app-name>.localhost where <app-name> is found in dx.yml. 🚀

For example, and app created with dx app create hello, the app will be on hello.localhostopen in new window by default.

Caution

Your app will now always be available on your machine until KUBE or the specific app is stopped.