From 08ced77fb1fcb29c41c1e7075f57453addd867db Mon Sep 17 00:00:00 2001 From: Étienne Loks Date: Wed, 17 Jul 2019 16:39:01 +0200 Subject: Manage frontpage (jumbotron, logo, brand name, etc.) --- Makefile.example | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) (limited to 'Makefile.example') diff --git a/Makefile.example b/Makefile.example index 2d14495..8932731 100644 --- a/Makefile.example +++ b/Makefile.example @@ -6,12 +6,13 @@ PYTHON=python3 help: # Actions available: # * clean: remove temporary files - # * test: launch tests - # * soft_test: launch tests without db reinitialization + # * compilemessages: compile messages to be translated + # * makemessages: create messages to be translated # * run: run local test server (port 9000) + # * sass: compile scss file # * shell: launch a python shell with project context preloaded - # * makemessages: create messages to be translated - # * compilemessages: compile messages to be translated + # * soft_test: launch tests without db reinitialization + # * test: launch tests clean: -rm -rf *~* @@ -38,6 +39,9 @@ shell: run: $(PYTHON) manage.py runserver 0.0.0.0:9000 +sass: + ./node_modules/node-sass/bin/node-sass scss/ishtar_public.scss --output-style compressed > ishtar_public/static/css/ishtar_public.css + makemessages: $(PYTHON) manage.py makemessages -- cgit v1.2.3