htmxapp / Makefile
rahuketu86's picture
Updated Index and Makefile
6190aeb
raw
history blame contribute delete
367 Bytes
.ONESHELL:
SHELL := /bin/bash
ENV := $(PWD)/.env
# Environment variables for project
include $(ENV)
# Export all variable to sub-make
export
dockerimg:
docker build -t htmxapp .
runapp:
docker run -p 5000:5000 -it htmxapp
deploy-space:
git push --force space main
preview-docs:
quarto preview --port 4000
preview-app:
echo $(FLASK_SECRET_KEY)
flask run