Fix running the server from the Makefile

This commit is contained in:
Raphaël Jakse 2020-05-03 14:35:33 +02:00
parent 1460660895
commit ca938357b7
2 changed files with 5 additions and 1 deletions

View File

@ -10,4 +10,4 @@ lang:
cd l10n; make
start-dev-server:
DEV_ENABLE_SERVING_FILES=true TRIVABBLE_PORT=$(PORT) node trivabble-server.js
cd server && make start-dev-server

4
server/Makefile Normal file
View File

@ -0,0 +1,4 @@
.PHONY: start-dev-server
start-dev-server:
DEV_ENABLE_SERVING_FILES=true TRIVABBLE_PORT=$(PORT) node trivabble-server.js