Skip to content

Commit

Permalink
chore: Minor improvements.
Browse files Browse the repository at this point in the history
  • Loading branch information
Byloth committed Sep 11, 2024
1 parent f412db6 commit ae54aa3
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 3 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,7 @@ Desktop.ini
# Environmental files
#
.env

# Log files
#
*.log
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ RUN mkdir -p "${MANGOS_DIR}" \
# - POSTGRESQL Use PostgreSQL instead of mysql
# - BUILD_EXTRACTORS Build map/dbc/vmap/mmap extractor
# - BUILD_SCRIPTDEV Build scriptdev. (Disable it to speedup build in dev mode by not including scripts)
# - BUILD_PLAYERBOT Build Playerbot mod
# - BUILD_PLAYERBOTS Build Playerbot mod
# - BUILD_AHBOT Build Auction House Bot mod
# - BUILD_METRICS Build Metrics, generate data for Grafana
# - BUILD_RECASTDEMOMOD Build map/vmap/mmap viewer
Expand Down
4 changes: 4 additions & 0 deletions builder/InstallFullDB.config
Original file line number Diff line number Diff line change
Expand Up @@ -60,4 +60,8 @@ DEV_UPDATES="NO"
## Set the variable to "YES" to import AHBot sql.
AHBOT="NO"

## Define if the 'src/modules/PlayerBots/sql' directory for processing development SQL files needs to be used
## Set the variable to "YES" to use the playerbots directory
PLAYERBOTS_DB="NO"

# Enjoy using the tool
4 changes: 2 additions & 2 deletions cmangos-run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ set -e
readonly PROJECT="cmangos"
readonly SERVICE="mangosd"

docker-compose -p "${PROJECT}" up --detach
docker attach "${PROJECT}_${SERVICE}_1"
docker compose -p "${PROJECT}" up --detach
docker attach "${PROJECT}-${SERVICE}-1"

0 comments on commit ae54aa3

Please sign in to comment.