Skip to content
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,9 +12,9 @@ ssl:
updateVersions: false
images:
peatio: quay.io/openware/peatio:2.6.48
barong: quay.io/openware/barong:2.6.44
frontend: quay.io/openware/baseapp:2.6.24
tower: quay.io/openware/tower:2.6.66
barong: quay.io/openware/barong:2.6.48
frontend: quay.io/openware/baseapp:2.6.27
tower: quay.io/openware/tower:2.6.82
rango: quay.io/openware/rango:2.6.1
finex:
enabled: false
Expand Down