Setup root repo with submodules for all bot components
This commit is contained in:
parent
b7dc884614
commit
361b27e047
13 changed files with 80 additions and 25 deletions
1
.github
Submodule
1
.github
Submodule
|
|
@ -0,0 +1 @@
|
|||
Subproject commit 5b126118d5dfaabb1b8dd4bb79693f968a2156a5
|
||||
52
.gitignore
vendored
52
.gitignore
vendored
|
|
@ -1,36 +1,38 @@
|
|||
.tmp*
|
||||
.tmp/*
|
||||
*.log
|
||||
target*
|
||||
.env
|
||||
*.env
|
||||
work
|
||||
# Build artifacts
|
||||
target/
|
||||
*.out
|
||||
bin
|
||||
botserver-stack
|
||||
bin/
|
||||
|
||||
# Logs
|
||||
*.log
|
||||
*logfile*
|
||||
*-log*
|
||||
docs/book
|
||||
|
||||
# Temporary files
|
||||
.tmp*
|
||||
.tmp/*
|
||||
|
||||
# Environment files
|
||||
.env
|
||||
*.env
|
||||
|
||||
# Work directories
|
||||
work/
|
||||
|
||||
# Redis
|
||||
*.rdb
|
||||
|
||||
# Documentation build
|
||||
docs/book
|
||||
|
||||
# Installers (keep gitkeep)
|
||||
botserver-installers/*
|
||||
!botserver-installers/.gitkeep
|
||||
|
||||
# Subproject directories (have their own git repos)
|
||||
botapp/
|
||||
botserver/
|
||||
botlib/
|
||||
botui/
|
||||
botbook/
|
||||
bottest/
|
||||
botdevice/
|
||||
botmodels/
|
||||
botplugin/
|
||||
bottemplates/
|
||||
|
||||
# IDE/Editor
|
||||
# IDE/Editor settings (local only)
|
||||
.vscode/
|
||||
.zed/
|
||||
.github/
|
||||
.idea/
|
||||
|
||||
# Build artifacts
|
||||
# Lock file (regenerated from Cargo.toml)
|
||||
Cargo.lock
|
||||
|
|
|
|||
42
.gitmodules
vendored
Normal file
42
.gitmodules
vendored
Normal file
|
|
@ -0,0 +1,42 @@
|
|||
[submodule "botapp"]
|
||||
path = botapp
|
||||
url = https://alm.pragmatismo.com.br/GeneralBots/botapp.git
|
||||
|
||||
[submodule "botserver"]
|
||||
path = botserver
|
||||
url = https://alm.pragmatismo.com.br/GeneralBots/botserver.git
|
||||
|
||||
[submodule "botlib"]
|
||||
path = botlib
|
||||
url = https://alm.pragmatismo.com.br/GeneralBots/botlib.git
|
||||
|
||||
[submodule "botui"]
|
||||
path = botui
|
||||
url = https://alm.pragmatismo.com.br/GeneralBots/botui.git
|
||||
|
||||
[submodule "botbook"]
|
||||
path = botbook
|
||||
url = https://alm.pragmatismo.com.br/GeneralBots/botbook.git
|
||||
|
||||
[submodule "bottest"]
|
||||
path = bottest
|
||||
url = https://alm.pragmatismo.com.br/GeneralBots/bottest.git
|
||||
|
||||
[submodule "botdevice"]
|
||||
path = botdevice
|
||||
url = https://alm.pragmatismo.com.br/GeneralBots/botdevice.git
|
||||
|
||||
[submodule "botmodels"]
|
||||
path = botmodels
|
||||
url = https://alm.pragmatismo.com.br/GeneralBots/botmodels.git
|
||||
|
||||
[submodule "botplugin"]
|
||||
path = botplugin
|
||||
url = https://alm.pragmatismo.com.br/GeneralBots/botplugin.git
|
||||
|
||||
[submodule "bottemplates"]
|
||||
path = bottemplates
|
||||
url = https://alm.pragmatismo.com.br/GeneralBots/bottemplates.git
|
||||
[submodule ".github"]
|
||||
path = .github
|
||||
url = https://alm.pragmatismo.com.br/GeneralBots/.github.git
|
||||
1
botapp
Submodule
1
botapp
Submodule
|
|
@ -0,0 +1 @@
|
|||
Subproject commit bc875b511f7a9be11b8cb49d8be4f33e2998f015
|
||||
1
botbook
Submodule
1
botbook
Submodule
|
|
@ -0,0 +1 @@
|
|||
Subproject commit 25a66030ba2160b3d8a036cabdc5953a268afac0
|
||||
1
botdevice
Submodule
1
botdevice
Submodule
|
|
@ -0,0 +1 @@
|
|||
Subproject commit f2afa7e7bebac98272940715f499c50381b30d4f
|
||||
1
botlib
Submodule
1
botlib
Submodule
|
|
@ -0,0 +1 @@
|
|||
Subproject commit 94f333f983aa7f4fcfc541b9d6f52f2261d3095a
|
||||
1
botmodels
Submodule
1
botmodels
Submodule
|
|
@ -0,0 +1 @@
|
|||
Subproject commit f7690e1d811824d39151e953ea604868a80be532
|
||||
1
botplugin
Submodule
1
botplugin
Submodule
|
|
@ -0,0 +1 @@
|
|||
Subproject commit 17a3caebabddbe843c2b7fd93f624b0ccd9c44fb
|
||||
1
botserver
Submodule
1
botserver
Submodule
|
|
@ -0,0 +1 @@
|
|||
Subproject commit 8d5bf7a7291f29efcec13637207a0c2448ee6ad7
|
||||
1
bottemplates
Submodule
1
bottemplates
Submodule
|
|
@ -0,0 +1 @@
|
|||
Subproject commit 98fb0b31a6e14aefbd6c77cf41dda2028b64dfda
|
||||
1
bottest
Submodule
1
bottest
Submodule
|
|
@ -0,0 +1 @@
|
|||
Subproject commit b38574c5885d356b026f5060af51ad02d2fcef21
|
||||
1
botui
Submodule
1
botui
Submodule
|
|
@ -0,0 +1 @@
|
|||
Subproject commit 1df0df222f1facb98588878648ac71030b5f43c3
|
||||
Loading…
Add table
Reference in a new issue