Skip to content

Commit 85160d1

Browse files
committed
added more make commands
1 parent 730a8de commit 85160d1

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

Makefile

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,14 @@ AUTHOR := Labriji Saad
44
# Default target when no arguments are provided to make
55
.DEFAULT_GOAL := help
66

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+
715
# Run Jupyter Lab - starts Jupyter Lab to allow for interactive development
816
jupy:
917
@echo "Starting Jupyter Lab..."
@@ -37,6 +45,8 @@ dockerun:
3745
# Display help with available make targets
3846
help:
3947
@echo Available targets:
48+
@echo make prep-dev - Install development dependencies
49+
@echo make prep-doc - Install production (Docker) dependencies
4050
@echo make jupy - Activate the virtual environment and run Jupyter Lab
4151
@echo make run - Run Kedro pipelines
4252
@echo make viz - Run Kedro Viz

0 commit comments

Comments
 (0)