Added Makefile wrapper
parent
afa7cf782d
commit
26b2745e9b
|
@ -1 +1,2 @@
|
|||
__pycache__/
|
||||
.venv/
|
||||
|
|
|
@ -0,0 +1,18 @@
|
|||
# =====CONFIG=====
|
||||
PYTHON := python3
|
||||
VENV := .venv
|
||||
|
||||
|
||||
# =====RECIPES=====
|
||||
# Create the virtual environment
|
||||
$(VENV)/bin/activate: setup.py
|
||||
'$(PYTHON)' -m venv '$(VENV)'
|
||||
'$(VENV)/bin/pip' install -r requirements.txt
|
||||
|
||||
venv: $(VENV)/bin/activate
|
||||
.PHONY: venv
|
||||
|
||||
# Remove any temporary files
|
||||
clean:
|
||||
@ rm -rf '$(VENV)'
|
||||
.PHONY: clean
|
|
@ -0,0 +1,2 @@
|
|||
Flask==2.0.2
|
||||
gunicorn==20.1.0
|
Reference in New Issue