refactor(db_assembler): Allow connecting to non default mysql ports (#3123)

This commit is contained in:
Petric
2021-01-11 19:43:36 +00:00
committed by GitHub
parent fd3505411d
commit 8e06b08416
2 changed files with 29 additions and 18 deletions

3
conf/dist/config.sh vendored
View File

@@ -164,16 +164,19 @@ DB_MYSQL_DUMP_EXEC="mysqldump"
DB_AUTH_CONF="MYSQL_USER='acore'; \
MYSQL_PASS='acore'; \
MYSQL_HOST='localhost';\
MYSQL_PORT='3306';\
"
DB_CHARACTERS_CONF="MYSQL_USER='acore'; \
MYSQL_PASS='acore'; \
MYSQL_HOST='localhost';\
MYSQL_PORT='3306';\
"
DB_WORLD_CONF="MYSQL_USER='acore'; \
MYSQL_PASS='acore'; \
MYSQL_HOST='localhost';\
MYSQL_PORT='3306';\
"
DB_AUTH_NAME="acore_auth"