Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: add back DB_TYPE #146

Merged
merged 1 commit into from Apr 20, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
fix: add back DB_TYPE
  • Loading branch information
HenryQW committed Apr 20, 2020
commit 4e16777b14d2b7477ec219bb6a31371cf8e27f46
3 changes: 2 additions & 1 deletion src/configure-db.php
Expand Up @@ -6,7 +6,8 @@
$config = array();

$config['SELF_URL_PATH'] = env('SELF_URL_PATH', 'http://localhost');
$config['DB_HOST'] = env('DB_HOST', 'postgres');
$config['DB_TYPE'] = 'pgsql';
$config['DB_HOST'] = env('DB_HOST', 'database.postgres');
$config['DB_PORT'] = env('DB_PORT', 5432);
$config['DB_NAME'] = env('DB_NAME', 'ttrss');
$config['DB_USER'] = env('DB_USER');
Expand Down