-
-
Notifications
You must be signed in to change notification settings - Fork 331
Expand file tree
/
Copy pathMakefile
More file actions
39 lines (27 loc) · 701 Bytes
/
Copy pathMakefile
File metadata and controls
39 lines (27 loc) · 701 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
clean:
rm -fr dist/ build/ *.egg-info/
docs:
cd docs && make clean && make html
test:
PYTHONWARNINGS=default uv run runtests.py
testjs:
npm run gulp test && \
jasmine --config=spirit/core/static/spirit/scripts/test/support/jasmine.json
buildjs:
npm run gulp coffee
buildcss:
npm run gulp css
sdist: test clean
uv build --sdist
txpush:
uv run -- manage.py spiritmakemessages --locale en && \
uv run manage.py spirittxpush
txpull:
uv run manage.py spirittxpull && \
uv run manage.py spiritcompilemessages
tx: txpush txpull
start:
uv run manage.py runserver
start_tasks_manager:
uv run manage.py run_huey
.PHONY: clean test sdist docs txpush txpull tx start start_tasks_manager