Skip to content

Commit 2747d74

Browse files
authored
Merge pull request #191 from inovector/fix_default_db_port
Fix default DB port to standard MySQL port 3306 and exclude CLAUDE.md…
2 parents 4130a78 + a21ff3f commit 2747d74

3 files changed

Lines changed: 3 additions & 2 deletions

File tree

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,3 +12,4 @@ vendor
1212
node_modules
1313
resources/dist/hot
1414
.DS_Store
15+
CLAUDE.md

phpunit.xml.dist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
<junit outputFile="build/report.junit.xml"/>
3838
</logging>
3939
<php>
40-
<env name="DB_PORT" value="3305"/>
40+
<env name="DB_PORT" value="3306"/>
4141
<env name="CACHE_DRIVER" value="redis"/>
4242
<env name="APP_KEY" value="base64:qzYIcSLNA/NsJSbH/V0vq/1Qz/aLx83jymQ1q37wf6w="/>
4343
</php>

tests/TestCase.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ public function getEnvironmentSetUp($app)
8989
config()->set('database.connections.mysql', [
9090
'driver' => 'mysql',
9191
'host' => env('DB_HOST', '127.0.0.1'),
92-
'port' => env('DB_PORT', '3305'),
92+
'port' => env('DB_PORT', '3306'),
9393
'database' => env('DB_DATABASE', 'mixpost_test'),
9494
'username' => env('DB_USERNAME', 'root'),
9595
'password' => env('DB_PASSWORD', ''),

0 commit comments

Comments
 (0)