diff --git a/app/config/parameters.yml.dist b/app/config/parameters.yml.dist index 36e3fe7f2..977ab1a8f 100644 --- a/app/config/parameters.yml.dist +++ b/app/config/parameters.yml.dist @@ -1,12 +1,6 @@ # This file is a "template" of what your parameters.yml file should look like parameters: - database_driver: pdo_mysql - database_host: 127.0.0.1 - database_port: ~ - database_name: symfony - database_user: root - database_password: ~ - # You should uncomment this if you want use pdo_sqlite + database_driver: pdo_sqlite database_path: "%kernel.root_dir%/data/db/poche.sqlite" mailer_transport: smtp diff --git a/bin/install b/bin/install index 61ffcb658..ed2c2d911 100755 --- a/bin/install +++ b/bin/install @@ -23,7 +23,7 @@ function executeQuery($handle, $sql, $params) { } $configFile = 'app/config/config.inc.php'; -$dbFile = 'app/db/poche.sqlite'; +$dbFile = 'data/db/poche.sqlite'; $username = 'wallabag'; $password = 'wallabag'; $salt = $parameters['parameters']['secret'];