22 lines
470 B
Makefile
22 lines
470 B
Makefile
# Scripts directory variable
|
|
SCRIPTS_DIR = "scripts"
|
|
|
|
# Bootstrap variables
|
|
BOOTSTRAP_MODULE = "bootstrap-custom/boostrap/scss"
|
|
CUSTOM_SCSS = "bootstrap-custom/custom.scss"
|
|
PUBLIC_CSS = "all_paw_care/static/css/custom.css"
|
|
|
|
|
|
.PHONY: dev-server
|
|
dev-server:
|
|
flask run --no-reload
|
|
|
|
.PHONY: build-custom-bootstrap
|
|
build-custom-bootstrap:
|
|
sass -I $(BOOTSTRAP_MODULE) $(CUSTOM_SCSS) $(PUBLIC_CSS)
|
|
|
|
.PHONY: process-images
|
|
process-images:
|
|
./$(SCRIPTS_DIR)/process-images.sh
|
|
|