From 5d3ab128fac9f6fb9ec29470fe4b043b16ad1919 Mon Sep 17 00:00:00 2001 From: ibousv Date: Fri, 3 Jan 2025 16:03:33 +0000 Subject: [PATCH 1/2] Update : barong, tower and rango images --- config/app.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/config/app.yml b/config/app.yml index 94ef99b8..1dc3f346 100644 --- a/config/app.yml +++ b/config/app.yml @@ -12,10 +12,10 @@ ssl: updateVersions: false images: peatio: quay.io/openware/peatio:2.6.48 - barong: quay.io/openware/barong:2.6.44 + barong: rubykube/barong:latest frontend: quay.io/openware/baseapp:2.6.24 - tower: quay.io/openware/tower:2.6.66 - rango: quay.io/openware/rango:2.6.1 + tower: rpsofttower/tower:latest + rango: lukutex/rango:2-6-stable finex: enabled: false image: quay.io/openware/finex:2.6.39 From 629e9ef8f6b0fb7df28e56295e609722cdf70a0c Mon Sep 17 00:00:00 2001 From: ibousv Date: Fri, 3 Jan 2025 16:23:10 +0000 Subject: [PATCH 2/2] fix: ruby installation --- README.md | 22 +++++++++++++++++++--- 1 file changed, 19 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 0c077f5d..a52588ce 100644 --- a/README.md +++ b/README.md @@ -58,13 +58,29 @@ cd opendax rvm install . ``` -### 3. Bundle install dependencies +if you get any error during the installation, try the following: +```bash +rvm cleanup all +``` +##### 2.3.4 Install Ruby +Get the asdf plugin ```bash -bundle install -rake -T # To see if ruby and lib works +git clone https://github.com/asdf-vm/asdf.git ~/.asdf --branch v0.13.1 +echo '. "$HOME/.asdf/asdf.sh"' >> ~/.bashrc +echo '. "$HOME/.asdf/completions/asdf.bash"' >> ~/.bashrc +asdf plugin add ruby +asdf install ruby 2.6.6 +asdf global ruby 2.6.6 ``` +Now type `ruby -v` and you should see the version 2.6.6 +### 3. Install Bundler +```bash +gem install bundler:2.1.4 +bundle install +rake -T +``` Using `rake -T` you can see all available commands, and can create new ones in `lib/tasks` ### 4. Run everything