mirror of
https://github.com/hermensbas/azerothcore_installer.git
synced 2026-01-13 08:37:17 +00:00
25 lines
1.1 KiB
Bash
Executable File
25 lines
1.1 KiB
Bash
Executable File
#!/bin/bash
|
|
ROOT_DIR="$(cd -P -- "$(dirname -- "$0")" && pwd -P)"
|
|
VAR_DIR="$(cd -P -- "$(dirname -- "$0")" && pwd -P)"
|
|
|
|
##########################################################################################
|
|
# DO NOT MODIFY THIS FILE, SEE /config/user.env settings instead!!
|
|
##########################################################################################
|
|
set -o allexport && source ${VAR_DIR}/config/user.env && set +o allexport
|
|
|
|
##########################################################################################
|
|
# Server and project internal variables
|
|
# https://github.com/azerothcore/azerothcore-wotlk/blob/master/conf/dist
|
|
##########################################################################################
|
|
AUTHSERVER="${VAR_DIR}/_server/azerothcore/acore.sh run-authserver"
|
|
WORLDSERVER="${VAR_DIR}/_server/azerothcore/acore.sh run-worldserver"
|
|
AUTHSERVER_SESSION="auth-session"
|
|
WORLDSERVER_SESSION="world-session"
|
|
|
|
MYSQL_ROOT_PASSWORD=rootpassword
|
|
MYSQL_USER=acore
|
|
MYSQL_PASSWORD=acore
|
|
MYSQL_DATABASE=acore_auth
|
|
|
|
DATAPATH=${VAR_DIR}/_server/azerothcore/env/dist/bin
|