Ajouter 'Build it yourself'

Mathieu Broillet 2023-06-21 12:45:50 +00:00
parent 945fdece5a
commit f6063ca1c4

20
Build-it-yourself.md Normal file

@ -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 <url of this repo>
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
```