From b1339629bf30eb73659a71db6cb097c4de233a34 Mon Sep 17 00:00:00 2001 From: Navendu Pottekkat Date: Wed, 24 Jul 2024 09:04:30 +0530 Subject: [PATCH] update installation instructions in readme updates the installation instructions in readme to use the script and the latest version. --- README.md | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 829a9cc3..bc7c251f 100644 --- a/README.md +++ b/README.md @@ -17,11 +17,17 @@ The following converters are supported to convert API specifications to ADC conf ## Installation -You can download the appropriate binary from the [releases page](https://github.com/api7/adc/releases): +The easiest way to install ADC is through the install script: ```bash -wget https://github.com/api7/adc/releases/download/v0.10.0/adc_0.10.0_linux_amd64.tar.gz -tar -zxvf adc_0.10.0_linux_amd64.tar.gz +curl -sL "https://run.api7.ai/adc/install" | sh +``` + +Or, you can download the appropriate binary from the [releases page](https://github.com/api7/adc/releases): + +```bash +wget https://github.com/api7/adc/releases/download/v0.12.0/adc_0.12.0_linux_amd64.tar.gz +tar -zxvf adc_0.12.0_linux_amd64.tar.gz mv adc /usr/local/bin/adc ```