This commit is contained in:
Maxim Khomutov 2024-07-24 16:40:53 +03:00
parent 9bc4f7f5b1
commit e85edcec26

View File

@ -2,13 +2,13 @@
## Install ## Install
Download binaries from: WIP Download binaries from: [HERE](https://git.anidev.ru/SantaSpeen/vmker/releases)
## Usage ## Usage
```shell ```shell
vmkey init # Настроить параметры vmkey init # Настроить параметры
vmkey edit # Редактировать параметры vmkey config # Редактировать параметры
vmkey create template_name new_name [-n VMs count] [[-f <file with commands>] ...] # Создание из template vmkey create template_name new_name [-n VMs count] [[-f <file with commands>] ...] # Создание из template
``` ```
@ -28,7 +28,7 @@ source venv/bin/acvtivate
```shell ```shell
python -m pip install -r requirements.txt python -m pip install -r requirements.txt
python -m pip install pyinstaller python -m pip install pyinstaller
pyinstaller --noconfirm --onefile --console --name "vmkey" "./src/main.py" pyinstaller --onefile -n vmkey main.py
# cp dist/vmkey /bin/vmkey # cp dist/vmkey /bin/vmkey
``` ```