Skip to content

Commit 112cc2a

Browse files
committed
adds make init
1 parent db5f62e commit 112cc2a

1 file changed

Lines changed: 7 additions & 0 deletions

File tree

{{cookiecutter.project_slug}}/Makefile

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,13 @@ help: Makefile
88
@sed -n 's/^##//p' $< | column -t -s ':' | sed -e 's/^/ /'
99
@echo
1010

11+
## init: initialize a new python project
12+
.PHONY: init
13+
init:
14+
python -m venv .venv
15+
direnv allow .
16+
type python
17+
1118
## install: install project dependencies
1219
.PHONY: install
1320
install:

0 commit comments

Comments
 (0)