-
-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathMakefile
More file actions
36 lines (27 loc) · 721 Bytes
/
Makefile
File metadata and controls
36 lines (27 loc) · 721 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
.PHONY: clean run migrate refresh
TEST_PATH=./
help:
@echo " front"
@echo " run frontend
@echo " back-run"
@echo " run backend
@echo " back-download"
@echo " download backend data
clean:
find . -name '*.pyc' -exec rm -f {} +
find . -name '*.pyo' -exec rm -f {} +
find . -name '*~' -exec rm -f {} +
rm -rf build/
rm -rf dist/
rm -rf *.egg-info
rm -rf docs/_build
front:
make -C SystemCode/frontend/smartportfolioWeb/src run
front-refresh:
make -C SystemCode/frontend/smartportfolioWeb/src refresh
front-migrate:
make -C SystemCode/frontend/smartportfolioWeb/src migrate
back-run:
make -C SystemCode/backend/ run
back-download:
make -C SystemCode/backend/ download