summaryrefslogtreecommitdiff
path: root/Makefile.example
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile.example')
-rw-r--r--Makefile.example12
1 files changed, 8 insertions, 4 deletions
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