Makefile stub + make test
This commit is contained in:
parent
daae22ea0e
commit
1fa4d3e8e5
1 changed files with 17 additions and 0 deletions
17
Makefile
Normal file
17
Makefile
Normal file
|
@ -0,0 +1,17 @@
|
|||
run:
|
||||
echo 'Not implemented'
|
||||
|
||||
test:
|
||||
python3 -m unittest discover -vcs ./backend
|
||||
|
||||
build:
|
||||
make frontend
|
||||
make backend
|
||||
|
||||
frontend:
|
||||
cd ./frontend
|
||||
echo 'Not implemented'
|
||||
|
||||
backend:
|
||||
cd ./backend
|
||||
echo 'Not implemented'
|
Loading…
Reference in a new issue