add self-hosting.sh to public site

This commit is contained in:
Carl-Gerhard Lindesvärd
2024-09-02 10:04:12 +02:00
parent 9ac9d52f37
commit 88b983a7ae

View File

@@ -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"