mirror of
https://gitnet.fr/deblan/gist.git
synced 2021-08-14 08:30:49 +02:00
Fix issue with SQLite setup
This commit is contained in:
parent
9059fe214b
commit
418d150833
@ -2,7 +2,7 @@ propel:
|
||||
database:
|
||||
connections:
|
||||
default:
|
||||
adapter: mysql
|
||||
adapter: sqlite
|
||||
classname: Propel\Runtime\Connection\ConnectionWrapper
|
||||
dsn: "sqlite:DATABASE_PATH"
|
||||
user: ~
|
||||
@ -10,7 +10,6 @@ propel:
|
||||
settings:
|
||||
charset: utf8
|
||||
queries:
|
||||
utf8: "SET NAMES utf8 COLLATE utf8_unicode_ci, COLLATION_CONNECTION = utf8_unicode_ci, COLLATION_DATABASE = utf8_unicode_ci, COLLATION_SERVER = utf8_unicode_ci"
|
||||
|
||||
paths:
|
||||
projectDir: src/
|
||||
|
@ -65,7 +65,7 @@ class PostInstallHandler
|
||||
$question = new Question('Password: [] ', '');
|
||||
$substitutions['DATABASE_PASSWORD'] = $helper->ask($input, $output, $question);
|
||||
} elseif ($dbms === 'SQLite') {
|
||||
$defaultPath = getcwd().'/app/data/gist.sqlite';
|
||||
$defaultPath = getcwd().'/data/gist.sqlite';
|
||||
$question = new Question("Ok! Where do you want me to save datas? [$defaultPath] ", $defaultPath);
|
||||
$substitutions['DATABASE_PATH'] = $helper->ask($input, $output, $question);
|
||||
$templateName = 'propel.yaml.dist-sqlite';
|
||||
|
Loading…
Reference in New Issue
Block a user