Skip to content

Commit 319430a

Browse files
committed
chore: add Makefile to improve dev experience
1 parent bbf0b20 commit 319430a

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

Makefile

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# This makefile is used to make it easier to get the project set up
2+
# to be ready for development work in the local sandbox.
3+
# example: "make setup"
4+
5+
setup: deps dev_deps install_project
6+
7+
deps:
8+
pip install -r requirements.txt
9+
10+
dev_deps:
11+
pip install -r requirements-dev.txt
12+
13+
install_project:
14+
pip install -e .

0 commit comments

Comments
 (0)