From 88b983a7aefccd9b1e2300863078a831ef0f79a7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Carl-Gerhard=20Lindesva=CC=88rd?= Date: Mon, 2 Sep 2024 10:04:12 +0200 Subject: [PATCH] add self-hosting.sh to public site --- apps/public/public/self-hosting.sh | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 apps/public/public/self-hosting.sh diff --git a/apps/public/public/self-hosting.sh b/apps/public/public/self-hosting.sh new file mode 100644 index 00000000..2dbcc872 --- /dev/null +++ b/apps/public/public/self-hosting.sh @@ -0,0 +1,16 @@ +#!/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"