10 lines
106 B
Makefile
10 lines
106 B
Makefile
|
all: install start
|
||
|
|
||
|
install:
|
||
|
npm install
|
||
|
npm run build:server
|
||
|
npm run build:client
|
||
|
|
||
|
start:
|
||
|
npm start
|