PORT ?= 9000
ENV ?= staging

nohup:
	nohup make start > output.log 2>&1 &

start:
	uvicorn main:app --host 0.0.0.0 --reload --port ${PORT}

stop:
	sudo fuser -k ${PORT}/tcp

deploy:
	./deploy.sh ${ENV}