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
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ init_vault:

start_baseapp:
echo -n -e "\033]0;baseapp\007"
cd baseapp; PORT=3002 yarn start:all
cd baseapp; nvm install; PORT=3002 yarn start:all

start_baseapp_proxy:
echo -n -e "\033]0;baseapp_proxy\007"
Expand Down
16 changes: 11 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,16 @@ Look into your $PATH

### Troubleshoot

#### Unsupported SSL version on Mac

When you run make, you may encounter the following error:
```
WARNING: /Users/alex/.rvm/rubies/ruby-2.7.5/bin/ruby is loading libcrypto in an unsafe way
zsh: abort bin/rake db:reset
```

You need to install openssl@1.1 and solve with it [this link](https://stackoverflow.com/questions/38670295/homebrew-refusing-to-link-openssl)

#### Vault

If you have a problem like:
Expand Down Expand Up @@ -160,10 +170,6 @@ doesn't show you anything.
Please setup your direnv:
https://clck.ru/XR3pC

#### Rails commands don't work in peatio on macOS

See: https://github.com/se3000/ruby-eth/issues/47

#### Failed to build gem pg

```
Expand All @@ -189,6 +195,7 @@ brew install libpq
sudo apt-get install libpq-dev
```


### Why it is running on localhost:8080 not www.app.local?

app.local is on http by default, but auth0 accepts localhost or https
Expand Down Expand Up @@ -216,7 +223,6 @@ Member.find_each do |member|
member.get_account('usd').update_columns balance: 10000, locked: 1000
member.get_account('btc').update_columns balance: 1, locked: 1
end

```

### How to enable 2FA?
Expand Down