9 lines
126 B
Makefile
9 lines
126 B
Makefile
|
.PHONY: run
|
||
|
run: .env ; @./run.sh
|
||
|
.PHONY: init
|
||
|
init:
|
||
|
pip install -r requirements.txt
|
||
|
@cp .env.example .env
|
||
|
${EDITOR} .env
|
||
|
|