Reputation: 87
I'm trying to build ripple-client on my computer following it's README.md and wiki.
But, after I run grunt devserver
and access http://local.ripple.com
, log in into my account. I can only find nothing but a navbar.
In my developer tools, I see a lot of errors, but nobody refer such situation on github issues or their bug tracker so I'm not sure if something I have done was wrong. send
and trade
page looked like this also.
https://i.sstatic.net/P7qNa.png
If these steps wrong or it's a bug?
git clone https://github.com/ripple/ripple-client`
npm install
bower install
grunt
and grunt devserver
.Upvotes: 2
Views: 459
Reputation: 166
Here's what I do:
git clone https://github.com/ripple/ripple-client`
npm install
bower install
cp src/js/config{-example,}.js
grunt
grunt devserver
You don't have to modify ripple.txt since you can login by appending @rippletrade.com to your Ripple ID, like [email protected].
About the errors appeared in your console, you can find it on the production rippletrade.com too :(.
BTW, you should have a look at the first lines in your console instead of these SVG related messages.
Upvotes: 1