Initial commit

master
Bottersnike 1 year ago
commit 8d8a5913f4

15
.gitmodules vendored

@ -0,0 +1,15 @@
[submodule "docs"]
path = docs
url = https://gitea.tendokyu.moe/eamuse/docs.git
[submodule "eaapi"]
path = eaapi
url = https://gitea.tendokyu.moe/eamuse/eaapi.git
[submodule "server-full"]
path = server-full
url = https://gitea.tendokyu.moe/eamuse/server-full.git
[submodule "proxy"]
path = proxy
url = https://gitea.tendokyu.moe/eamuse/proxy.git
[submodule "server-dummy"]
path = server-dummy
url = https://gitea.tendokyu.moe/eamuse/server-dummy.git

@ -0,0 +1,10 @@
@echo off
for /D %%G in (%CD%\*) do if exist %%G\.git (
cd %%G
echo ================================================================
echo %%G
echo ================================================================
git %*
cd ..
)

@ -0,0 +1,12 @@
@echo off
for /D %%G in (%CD%\*) do if exist %%G\.git (
cd %%G
set RESULT=
for /f %%i in ('git status -s') do (set RESULT=%%i)
if defined RESULT (
git add %*
git commit %*
)
cd ..
)

@ -0,0 +1 @@
Subproject commit 0daa10b01d5b0177adb85af2644ef5eb03d522ec

@ -0,0 +1 @@
Subproject commit e8ccee4a104962d2b8294ffb322b0ae33c6691a9

@ -0,0 +1 @@
Subproject commit e86933c3156461147f682c1917c58631436f49f2

@ -0,0 +1 @@
Subproject commit 6e0a6f7db88bdfd13b60f724585006f81aa6f8ea

@ -0,0 +1 @@
Subproject commit 98a4b36a613cb4d8d42a35e4d1285ce02ae52cfc

@ -0,0 +1,14 @@
@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

@ -0,0 +1,10 @@
@echo off
for /D %%G in (%CD%\*) do if exist %%G\tests (
cd %%G
echo ================================================================
echo %%G
echo ================================================================
py -m unittest
cd ..
)
Loading…
Cancel
Save