From 307611a5d4451565cb746521383edbf1f63f2f59 Mon Sep 17 00:00:00 2001 From: Navan Chauhan Date: Sat, 5 Jun 2021 17:32:50 +0530 Subject: added https for local development --- Makefile | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 87d5b6b..7c0a3bb 100644 --- a/Makefile +++ b/Makefile @@ -19,4 +19,15 @@ db: .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 + FLASK_APP=app python -m flask run --reload --debugger --extra-files ./app/templates/base.html:./app/templates/contact.html:./app/templates/index.html + +## Create Self-Signed SSL Certificate +.PHONY: cert-create +cert-create: + openssl req -x509 -newkey rsa:4096 -nodes -out cert.pem -keyout key.pem -days 365 + +## Dev server with SSL +.PHONY: dev-ssl +dev-ssl: + cd app && ln -sf config_dev.py config.py + FLASK_APP=app python -m flask run --reload --debugger --cert=cert.pem --key=key.pem \ No newline at end of file -- cgit v1.2.3