You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+22-5Lines changed: 22 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -47,22 +47,39 @@ Released Under [**World Bank Dataset Terms of Use**](http://web.worldbank.org/WB
47
47
2. Navigate into this folder "world-dev-indicators" through command line.
48
48
3. Type:
49
49
50
-
51
-
$make clear_all
50
+
```
51
+
make clear_all
52
+
```
52
53
53
54
54
55
This will clear all the result files which come with this repo.
55
56
56
57
4. Now, type:
57
58
58
-
59
-
$make all
59
+
```
60
+
make all
61
+
```
60
62
61
63
This will run all the scripts in the `src/` folder as per the sequence in `Makefile` and render the analysis in the `results/` folder.
62
64
63
65
### Docker
64
66
65
-
1.
67
+
1. Download from Docker
68
+
69
+
```
70
+
docker pull simransethi/world-dev-indicators
71
+
```
72
+
73
+
2. Clean, so that you can build from start:
74
+
75
+
```
76
+
docker run --rm -v **insert-location-to-repo-in-local-systme**:/home/world-dev-indicators simransethi/world-dev-indicators make -C '/home/world-dev-indicators' clear_all
77
+
```
78
+
3. Run the whole analysis:
79
+
80
+
```
81
+
docker run --rm -v **insert-location-to-repo-in-local-systme**:/home/world-dev-indicators simransethi/world-dev-indicators make -C '/home/world-dev-indicators' all
82
+
```
66
83
67
84
**The final report is rendered at this location: `doc/final_report/`**
0 commit comments