From 0c693a7c2694c7bbb908a8ffc8f035b666b504ff Mon Sep 17 00:00:00 2001 From: Stefan Pejcic Date: Sat, 10 Feb 2024 21:55:54 +0100 Subject: [PATCH] Create development.md --- .../docs/admin/customize/development.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 documentation/docs/admin/customize/development.md diff --git a/documentation/docs/admin/customize/development.md b/documentation/docs/admin/customize/development.md new file mode 100644 index 0000000..582d060 --- /dev/null +++ b/documentation/docs/admin/customize/development.md @@ -0,0 +1,18 @@ +--- +sidebar_position: 6 +--- + +# Development + + + +## Running Custom Code + +### Run custom code on OpenPanel installation + +To execute custom code following the installation of OpenPanel, place your custom script on the server. When initiating the OpenPanel installation process, use the `--post_install=` flag and specify the path to your script within it. +Example: + +```bash + --post_install=/root/my_custom_script.sh +```