You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#jira UE-182678 [REVIEW] [at]stephen.ma [at]rafa.lecina #rb [at]stephen.ma [at]rafa.lecina [CL 27484161 by lorry li in ue5-main branch]
17 lines
347 B
Batchfile
Executable File
17 lines
347 B
Batchfile
Executable File
@echo off
|
|
|
|
if exist env (
|
|
call .\env\Scripts\activate.bat
|
|
) else (
|
|
..\..\..\Binaries\ThirdParty\Python3\Win64\python.exe -m venv env
|
|
call .\env\Scripts\activate.bat
|
|
python -m pip install --upgrade pip
|
|
pip install -r requirements.txt
|
|
if %ERRORLEVEL% NEQ 0 (
|
|
rmdir /s /q env
|
|
exit %ERRORLEVEL%
|
|
)
|
|
)
|
|
|
|
python manage.py runserver 0.0.0.0:8000
|