9 lines
157 B
Batchfile
9 lines
157 B
Batchfile
@echo off
|
|
pushd %~dp0
|
|
call npm run build
|
|
call npm run start
|
|
popd
|
|
pause
|
|
|
|
node ./build/index.js -s -p 8080 -m private -k ./server.key -c ./server.cert -l dev
|