diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 13 |
1 files changed, 12 insertions, 1 deletions
@@ -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 |