Skip to content

Commit 46dbc25

Browse files
committed
fix: correct MySQL and MariaDB port assignments in dev mode test stacks
1 parent 42281e7 commit 46dbc25

2 files changed

Lines changed: 12 additions & 12 deletions

File tree

_test-stacks/local-dev-mode/packages/nextjs-frontend/.env.local

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@ STP_POSTGRES_DB_DB_NAME=postgres
66
STP_POSTGRES_DB_CONNECTION_STRING=postgresql://postgres:testPassword123@localhost:7632/postgres
77
STP_POSTGRES_DB_JDBC_CONNECTION_STRING=jdbc:postgresql://localhost:7632/postgres?user=postgres&password=testPassword123
88
STP_MYSQL_DB_HOST=localhost
9-
STP_MYSQL_DB_PORT=5506
9+
STP_MYSQL_DB_PORT=5507
1010
STP_MYSQL_DB_DB_NAME=mysql
11-
STP_MYSQL_DB_CONNECTION_STRING=mysql://root:testPassword123@localhost:5506/mysql
12-
STP_MYSQL_DB_JDBC_CONNECTION_STRING=jdbc:mysql://localhost:5506/mysql?user=root&password=testPassword123
11+
STP_MYSQL_DB_CONNECTION_STRING=mysql://root:testPassword123@localhost:5507/mysql
12+
STP_MYSQL_DB_JDBC_CONNECTION_STRING=jdbc:mysql://localhost:5507/mysql?user=root&password=testPassword123
1313
STP_MARIA_DB_HOST=localhost
14-
STP_MARIA_DB_PORT=5507
14+
STP_MARIA_DB_PORT=5506
1515
STP_MARIA_DB_DB_NAME=mysql
16-
STP_MARIA_DB_CONNECTION_STRING=mysql://root:testPassword123@localhost:5507/mysql
17-
STP_MARIA_DB_JDBC_CONNECTION_STRING=jdbc:mysql://localhost:5507/mysql?user=root&password=testPassword123
16+
STP_MARIA_DB_CONNECTION_STRING=mysql://root:testPassword123@localhost:5506/mysql
17+
STP_MARIA_DB_JDBC_CONNECTION_STRING=jdbc:mysql://localhost:5506/mysql?user=root&password=testPassword123
1818
STP_REDIS_HOST=localhost
1919
STP_REDIS_PORT=8579
2020
STP_REDIS_CONNECTION_STRING=redis://default:redisTestPassword1234@localhost:8579

_test-stacks/local-dev-mode/packages/spa-frontend/.env.local

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@ STP_POSTGRES_DB_DB_NAME=postgres
66
STP_POSTGRES_DB_CONNECTION_STRING=postgresql://postgres:testPassword123@localhost:7632/postgres
77
STP_POSTGRES_DB_JDBC_CONNECTION_STRING=jdbc:postgresql://localhost:7632/postgres?user=postgres&password=testPassword123
88
STP_MYSQL_DB_HOST=localhost
9-
STP_MYSQL_DB_PORT=5506
9+
STP_MYSQL_DB_PORT=5507
1010
STP_MYSQL_DB_DB_NAME=mysql
11-
STP_MYSQL_DB_CONNECTION_STRING=mysql://root:testPassword123@localhost:5506/mysql
12-
STP_MYSQL_DB_JDBC_CONNECTION_STRING=jdbc:mysql://localhost:5506/mysql?user=root&password=testPassword123
11+
STP_MYSQL_DB_CONNECTION_STRING=mysql://root:testPassword123@localhost:5507/mysql
12+
STP_MYSQL_DB_JDBC_CONNECTION_STRING=jdbc:mysql://localhost:5507/mysql?user=root&password=testPassword123
1313
STP_MARIA_DB_HOST=localhost
14-
STP_MARIA_DB_PORT=5507
14+
STP_MARIA_DB_PORT=5506
1515
STP_MARIA_DB_DB_NAME=mysql
16-
STP_MARIA_DB_CONNECTION_STRING=mysql://root:testPassword123@localhost:5507/mysql
17-
STP_MARIA_DB_JDBC_CONNECTION_STRING=jdbc:mysql://localhost:5507/mysql?user=root&password=testPassword123
16+
STP_MARIA_DB_CONNECTION_STRING=mysql://root:testPassword123@localhost:5506/mysql
17+
STP_MARIA_DB_JDBC_CONNECTION_STRING=jdbc:mysql://localhost:5506/mysql?user=root&password=testPassword123
1818
STP_REDIS_HOST=localhost
1919
STP_REDIS_PORT=8579
2020
STP_REDIS_CONNECTION_STRING=redis://default:redisTestPassword1234@localhost:8579

0 commit comments

Comments
 (0)