summaryrefslogtreecommitdiffstats
path: root/makefile
blob: 73fe26a549fdfb553f8c832b22142a1fcd381e2d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
all:
	@echo "all not allowed"

release: venv
	cd front && npm run release

venv:
	[ -d "upnet-env" ] || python3 -m venv upnet-env
	source upnet-env/bin/activate && pip install -U pip && pip install -r back/requirements.txt

run:
	source upnet-env/bin/activate && python3 back/app.py

clean:
	rm -rf upnet-env
	rm -rf front/dist