From e92be717c1c5f6263782c3018aef904a21234604 Mon Sep 17 00:00:00 2001 From: Oleg Silkin Date: Tue, 11 Jun 2019 11:22:32 -0400 Subject: [PATCH] removes irrelevant content --- README.md | 21 +++++---------------- 1 file changed, 5 insertions(+), 16 deletions(-) diff --git a/README.md b/README.md index 477971d..d1ef3b2 100644 --- a/README.md +++ b/README.md @@ -3,9 +3,6 @@ ## Installation -Firstly you'll need to install and run the `lbrynet` daemon, -the details of which can be found [here](https://github.com/osilkin98/lbryio/lbry). - Installing the server: ```bash @@ -23,20 +20,12 @@ $ source venv/bin/activate ``` ## Usage - - -First, make sure that the LBRY API server is running, -to do so you can run the following: - - ```bash - (venv) $ curl --data '{ "method": "status"}' http://localhost:5279/ | grep is_running - - # Or from the lbrynet virtual environment: - (lbry-venv) $ lbrynet status | grep is_running - ``` - -Then to start the server, simply run: +To start the server, simply run: ```bash +# to enter server's venv +$ source venv/bin/activate + +# to actually run server (venv) $ python -m main & ```