File tree Expand file tree Collapse file tree 1 file changed +10
-0
lines changed Expand file tree Collapse file tree 1 file changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,14 @@ AUTHOR := Labriji Saad
4
4
# Default target when no arguments are provided to make
5
5
.DEFAULT_GOAL := help
6
6
7
+ prep-dev :
8
+ @echo " Installing development dependencies..."
9
+ @pip install -r dev-requirements.txt
10
+
11
+ prep-doc :
12
+ @echo " Installing production (Docker) dependencies..."
13
+ @pip install -r docker-requirements.txt
14
+
7
15
# Run Jupyter Lab - starts Jupyter Lab to allow for interactive development
8
16
jupy :
9
17
@echo " Starting Jupyter Lab..."
@@ -37,6 +45,8 @@ dockerun:
37
45
# Display help with available make targets
38
46
help :
39
47
@echo Available targets:
48
+ @echo make prep-dev - Install development dependencies
49
+ @echo make prep-doc - Install production (Docker) dependencies
40
50
@echo make jupy - Activate the virtual environment and run Jupyter Lab
41
51
@echo make run - Run Kedro pipelines
42
52
@echo make viz - Run Kedro Viz
You can’t perform that action at this time.
0 commit comments