Initial commit
This commit is contained in:
commit
8d8a5913f4
15
.gitmodules
vendored
Normal file
15
.gitmodules
vendored
Normal file
@ -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
|
10
all.cmd
Normal file
10
all.cmd
Normal file
@ -0,0 +1,10 @@
|
||||
@echo off
|
||||
|
||||
for /D %%G in (%CD%\*) do if exist %%G\.git (
|
||||
cd %%G
|
||||
echo ================================================================
|
||||
echo %%G
|
||||
echo ================================================================
|
||||
git %*
|
||||
cd ..
|
||||
)
|
12
commit.cmd
Normal file
12
commit.cmd
Normal file
@ -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 ..
|
||||
)
|
1
docs
Submodule
1
docs
Submodule
@ -0,0 +1 @@
|
||||
Subproject commit 0daa10b01d5b0177adb85af2644ef5eb03d522ec
|
1
eaapi
Submodule
1
eaapi
Submodule
@ -0,0 +1 @@
|
||||
Subproject commit e8ccee4a104962d2b8294ffb322b0ae33c6691a9
|
1
proxy
Submodule
1
proxy
Submodule
@ -0,0 +1 @@
|
||||
Subproject commit e86933c3156461147f682c1917c58631436f49f2
|
1
server-dummy
Submodule
1
server-dummy
Submodule
@ -0,0 +1 @@
|
||||
Subproject commit 6e0a6f7db88bdfd13b60f724585006f81aa6f8ea
|
1
server-full
Submodule
1
server-full
Submodule
@ -0,0 +1 @@
|
||||
Subproject commit 98a4b36a613cb4d8d42a35e4d1285ce02ae52cfc
|
14
setup.cmd
Normal file
14
setup.cmd
Normal file
@ -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
|
Loading…
Reference in New Issue
Block a user