From 0196e8c06d35fdd41e3962e37e98812694a10513 Mon Sep 17 00:00:00 2001 From: Navan Chauhan Date: Fri, 4 Jun 2021 00:54:58 +0530 Subject: added makefile --- Makefile | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..87d5b6b --- /dev/null +++ b/Makefile @@ -0,0 +1,22 @@ +# Makefile + +## Configuration + +PROJECT := $(shell basename $(PWD)) + +## Install Dependencies +.PHONY: install +install: + pip install -r requirements.txt + +## Create Database +.PHONY: db +db: + cd app && ln -sf config_dev.py config.py + FLASK_APP=app python -m flask database create + +## Start Dev Server with Hot-Reloading +.PHONY: dev +dev: + cd app && ln -sf config_dev.py config.py + FLASK_APP=app python -m flask run --reload --debugger --extra-files ./app/templates/base.html:./app/templates/contact.html:./app/templates/index.html \ No newline at end of file -- cgit v1.2.3