Files
pixel-streaming-webrtc/SFU/platform_scripts/cmd/setup.bat
T
2023-05-19 01:56:43 +03:00

17 lines
386 B
Batchfile

@Rem Copyright Epic Games, Inc. All Rights Reserved.
@echo off
@Rem Set script location as working directory for commands.
pushd "%~dp0"
@Rem Ensure we have NodeJs available for calling.
call setup_node.bat
@Rem Move to sfu_server.js directory and install its package.json
pushd %~dp0\..\..\
call platform_scripts\cmd\node\npm install --no-save
popd
@Rem Pop working directory
popd