From 38e60fab1c5432f21bc733ab484e8624e4f5a559 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Carl-Gerhard=20Lindesva=CC=88rd?= Date: Mon, 2 Sep 2024 10:39:40 +0200 Subject: [PATCH] fix docs --- apps/docs/src/pages/docs/self-hosting/index.mdx | 2 +- apps/public/public/self-hosting.sh | 16 ---------------- 2 files changed, 1 insertion(+), 17 deletions(-) delete mode 100644 apps/public/public/self-hosting.sh diff --git a/apps/docs/src/pages/docs/self-hosting/index.mdx b/apps/docs/src/pages/docs/self-hosting/index.mdx index 9455ea56..955aac90 100644 --- a/apps/docs/src/pages/docs/self-hosting/index.mdx +++ b/apps/docs/src/pages/docs/self-hosting/index.mdx @@ -16,7 +16,7 @@ This is a simple guide how to get started with OpenPanel on your own VPS. ### Quickstart ```bash -git clone https://github.com/Openpanel-dev/openpanel && cd openpanel/self-hosting && ./start +git clone https://github.com/Openpanel-dev/openpanel && cd openpanel/self-hosting && ./setup # After setup is complete run `./start` to start OpenPanel ``` diff --git a/apps/public/public/self-hosting.sh b/apps/public/public/self-hosting.sh deleted file mode 100644 index 2dbcc872..00000000 --- a/apps/public/public/self-hosting.sh +++ /dev/null @@ -1,16 +0,0 @@ -#!/bin/bash - -# Clone the Openpanel repository -git clone https://github.com/Openpanel-dev/openpanel.git - -# Navigate to the self-hosting directory -cd openpanel/self-hosting - -# Run the setup script -./setup - -# Navigate back to the original directory -cd ../../ - -# Clean up by removing the downloaded script -rm -- "$0"