15 lines
354 B
Batchfile
15 lines
354 B
Batchfile
@echo off
|
|
|
|
rem Doing this individually means we can just skip over any that error
|
|
git submodule init docs
|
|
git submodule init eaapi
|
|
git submodule init proxy
|
|
git submodule init server-dummy
|
|
git submodule init server-full
|
|
|
|
for /D %%G in (%CD%\*) do if exist %%G\requirements.txt (
|
|
py -m pip install -r %%G\requirements.txt
|
|
)
|
|
|
|
py -m pip install -e eaapi
|