-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[#83] Unit tests are working. Functional is not getting picked up.
- Loading branch information
1 parent
eb928ad
commit b151f3f
Showing
3 changed files
with
11 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,10 @@ | ||
<?php | ||
|
||
use craft\helpers\App; | ||
|
||
return [ | ||
'dsn' => getenv('DB_DSN'), | ||
'user' => getenv('DB_USER'), | ||
'password' => getenv('DB_PASSWORD'), | ||
'schema' => getenv('DB_SCHEMA'), | ||
'tablePrefix' => getenv('DB_TABLE_PREFIX'), | ||
'dsn' => App::env('DB_DSN'), | ||
'user' => App::env('DB_USER'), | ||
'password' => App::env('DB_PASSWORD'), | ||
'schema' => App::env('DB_SCHEMA'), | ||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
<?php | ||
|
||
return [ | ||
'securityKey' => 'asdfghjkl', | ||
'usePathInfo' => true, | ||
'omitScriptNameInUrls' => true, | ||
]; |