File tree 2 files changed +15
-4
lines changed
2 files changed +15
-4
lines changed Original file line number Diff line number Diff line change @@ -26,12 +26,26 @@ This source code repository bundles all of Delphi's components and provides an u
26
26
You need a running instance of [ ElasticSearch] ( https://www.elastic.co/downloads/elasticsearch ) on your local machine on port 9200.
27
27
28
28
### 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
+
30
37
```
31
38
sbt run
32
39
```
40
+   ;  ;  ;  ;
33
41
into your terminal. SBT will compile and start all necessary services to run Delphi.
34
42
43
+ * Delphi components can be deleted in case all cloned components needs to be deleted using
44
+
45
+ ```
46
+ sbt delete
47
+ ```
48
+   ;  ;  ;  ;
35
49
## Components
36
50
37
51
### delphi-crawler
Original file line number Diff line number Diff line change @@ -64,9 +64,6 @@ lazy val webapi = Project(
64
64
id = " webapi" ,
65
65
base = file(" repos/delphi-webapi" ))
66
66
67
-
68
-
69
-
70
67
lazy val cli = Project (
71
68
id = " cli" ,
72
69
base = file(" repos/delphi-cli" ))
You can’t perform that action at this time.
0 commit comments