core dir, which previously held all bot code, now renamed to bot
dash_site dir renamed to just site
Created a databases directory at the same levels as core and site. All databases, for both bot and site, should reside here. There is a subdirectory for each though inside, called bot_servers and game_servers. bot_servers will have the db that holds all def call info, tracker info, etc. game_servers is where all map data is loaded. We'll need to re-configure the bot to read from this dir (todo).
Removed databases/ from .gitignore. This is so the above-mentioned directory will be tracked.
Fully removed load.sh as we're moving to the python-based loading to enable multi-server map collection
Renames and moves some stuff. Of note:
core
dir, which previously held all bot code, now renamed tobot
dash_site
dir renamed to justsite
databases
directory at the same levels ascore
andsite
. All databases, for both bot and site, should reside here. There is a subdirectory for each though inside, calledbot_servers
andgame_servers
.bot_servers
will have the db that holds all def call info, tracker info, etc.game_servers
is where all map data is loaded. We'll need to re-configure the bot to read from this dir (todo).databases/
from.gitignore
. This is so the above-mentioned directory will be tracked.load.sh
as we're moving to the python-based loading to enable multi-server map collection