Commit a85746f0 authored by Francois Ledoyen's avatar Francois Ledoyen
Browse files

feat: add make target to run local crawler

parent 6705722c
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -12,6 +12,9 @@ install:
run-crawler:
	$(MAKE) -C ${PPT_CRAWLER} run

run-crawler-local:
	$(MAKE) -C ${PPT_CRAWLER} run-local

run-api:
	poetry run tagthunder-api

+3 −0
Original line number Diff line number Diff line
@@ -4,6 +4,9 @@ IMAGE_NAME="tagthunder-crawler"
run:
	docker run -ti -p 8080:8080 tagthunder-crawler

run-local:
	node server.js

build:
	@npm install .
	@npm pack $(HTML_AUG_DIR) --pack-destination ./node_modules