diff options
author | Étienne Loks <etienne@peacefrogs.net> | 2019-12-02 13:06:48 +0100 |
---|---|---|
committer | Étienne Loks <etienne@peacefrogs.net> | 2019-12-02 13:06:48 +0100 |
commit | e979a1604625cee3a8ae4fb11fa330ccf237a529 (patch) | |
tree | 417437d4366ad5dbdb0d865057da8be629e61dd6 /Makefile.example | |
parent | 4d6d85e3f5dbf2a3c8a60bb01b07a591ca08b61d (diff) | |
download | ishtar-pergamon-e979a1604625cee3a8ae4fb11fa330ccf237a529.tar.bz2 ishtar-pergamon-e979a1604625cee3a8ae4fb11fa330ccf237a529.zip |
CSS generated are put inside app project
Diffstat (limited to 'Makefile.example')
-rw-r--r-- | Makefile.example | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile.example b/Makefile.example index 01b9363..3a93ded 100644 --- a/Makefile.example +++ b/Makefile.example @@ -1,4 +1,5 @@ SHELL := /bin/bash +CURRENT_APP="drassm_showcase" PYTHON=python3 APPS="home" "showcase" "pergamon" @@ -33,7 +34,7 @@ run: ## run local test server (port 9000) $(PYTHON) manage.py runserver 0.0.0.0:9000 sass: ## compile sass files - ./node_modules/node-sass/bin/node-sass scss/pergamon.scss --output-style compressed > pergamon/static/css/pergamon.css + ./node_modules/node-sass/bin/node-sass scss/pergamon.scss --output-style compressed > $(CURRENT_APP)/static/css/pergamon.css makemessages: ## create messages to be translated for DIR in $(APPS); do \ |