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]chad.garyet [at]ryan.hummer [at]rafa.lecina [at]michael.kirzinger #rb [at]chris.constantinescu [CL 26739672 by lorry li in ue5-main branch]
14 lines
299 B
Bash
14 lines
299 B
Bash
if [ -d "env" ]; then
|
|
source ./env/Scripts/activate.sh
|
|
else
|
|
run ../../../../Binaries/ThirdParty/Python3/Mac/python3 -m venv env
|
|
source ./env/Scripts/activate.sh
|
|
run pip install -r requirements.txt
|
|
if [ $? -ne 0 ]; then
|
|
rm -rf env
|
|
exit $?
|
|
fi
|
|
fi
|
|
|
|
cmd python manage.py runserver 0.0.0.0:8000
|