From f6063ca1c43ef2c59f9890281d00ac37ed91fae8 Mon Sep 17 00:00:00 2001 From: Mathieu Broillet Date: Wed, 21 Jun 2023 12:45:50 +0000 Subject: [PATCH] Ajouter 'Build it yourself' --- Build-it-yourself.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 Build-it-yourself.md diff --git a/Build-it-yourself.md b/Build-it-yourself.md new file mode 100644 index 0000000..285fd3f --- /dev/null +++ b/Build-it-yourself.md @@ -0,0 +1,20 @@ +## Build it yourself + +The software is automatically build using Drone but if you want to manually build it, here are the instructions. + +```bash +# Build on Debian +git clone +cd ProxmoxDeploy +apt update && apt install -y build-essential patchelf +pip install nuitka +pip install -r requirements.txt +python -m nuitka --onefile run.py --output-filename="ProxmoxDeploy" +``` +*Also see the ``Dockerfile`` and ``.drone.yml`` for more information.* + +## Run it +```bash +# Run it +./ProxmoxDeploy --help +```