Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Minor update #416

Open
wants to merge 2 commits into
base: 2-6-stable
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 19 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions config/app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down