From 21642ce1306a0479ca3bc9ee850c5bb266becf45 Mon Sep 17 00:00:00 2001 From: Carlos Bruguera Date: Fri, 17 Mar 2017 17:54:59 -0400 Subject: [PATCH] Fixed error in command for starting API server Presently, `scripts` folder is outside `agent`, and .py extension should be omitted in the command (`startApiServer` file should have a .py extension though) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 27bf488..d221c3f 100644 --- a/README.md +++ b/README.md @@ -15,5 +15,5 @@ and interacting with the Sovrin Distributed Identity Ledger. - `$ pip install -r requirements.txt` ## Steps to run api -- `$ python -m agent.scripts.startApiServer.py 0.0.0.0 8080` +- `$ python -m scripts.startApiServer 0.0.0.0 8080` - Run `$ pytest` to run all tests