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 +```