add https for dev server
This commit is contained in:
6
Makefile
6
Makefile
@ -84,12 +84,18 @@ run-server:
|
||||
serve-python:
|
||||
$(FLASK) run --with-threads -h $(HOST) -p $(API_PORT)
|
||||
|
||||
serve-python-dev:
|
||||
$(FLASK) run --with-threads -h $(HOST) -p $(API_PORT) --cert=adhoc
|
||||
|
||||
serve-react:
|
||||
$(NPM) start
|
||||
|
||||
serve:
|
||||
$(MAKE) P="serve-react serve-python" make-p
|
||||
|
||||
serve-dev:
|
||||
$(MAKE) P="serve-react serve-python-dev" make-p
|
||||
|
||||
test-e2e: init-db
|
||||
$(NPM) test
|
||||
|
||||
|
Reference in New Issue
Block a user