Skip to content

Commit 6f71381

Browse files
author
Hariharan Ramanathan
committed
Updated run instructions
1 parent 2388795 commit 6f71381

File tree

2 files changed

+15
-4
lines changed

2 files changed

+15
-4
lines changed

README.md

+15-1
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,26 @@ This source code repository bundles all of Delphi's components and provides an u
2626
You need a running instance of [ElasticSearch](https://www.elastic.co/downloads/elasticsearch) on your local machine on port 9200.
2727

2828
### Running Delphi locally
29-
After you started ElasticSearch, it is simply a matter of typing
29+
After you started ElasticSearch, you can run delphi by following the below steps
30+
31+
* Cloning the projects. Needs to be done only the first time.
32+
```
33+
sbt clone-all
34+
```
35+
* After that, just use run command
36+
3037
```
3138
sbt run
3239
```
40+
    
3341
into your terminal. SBT will compile and start all necessary services to run Delphi.
3442

43+
* Delphi components can be deleted in case all cloned components needs to be deleted using
44+
45+
```
46+
sbt delete
47+
```
48+
    
3549
## Components
3650

3751
### delphi-crawler

build.sbt

-3
Original file line numberDiff line numberDiff line change
@@ -64,9 +64,6 @@ lazy val webapi = Project(
6464
id = "webapi",
6565
base = file("repos/delphi-webapi"))
6666

67-
68-
69-
7067
lazy val cli = Project(
7168
id = "cli",
7269
base = file("repos/delphi-cli"))

0 commit comments

Comments
 (0)