summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/config.template.php5
-rw-r--r--lib/helpers.php10
2 files changed, 12 insertions, 3 deletions
diff --git a/lib/config.template.php b/lib/config.template.php
index dae8968..ee822bb 100644
--- a/lib/config.template.php
+++ b/lib/config.template.php
@@ -4,11 +4,16 @@ class Config {
public static $base_url = 'http://quill.dev/';
public static $gaid = '';
+ // MySQL (default)
public static $dbHost = '127.0.0.1';
public static $dbName = 'quill';
public static $dbUsername = 'quill';
public static $dbPassword = '';
+ // Sqlite
+ // public static $dbType = 'sqlite';
+ // public static $dbFilePath = './example.db';
+
public static $jwtSecret = 'xxx';
public static $fbClientID = '';
diff --git a/lib/helpers.php b/lib/helpers.php
index ad16e1b..eb8994c 100644
--- a/lib/helpers.php
+++ b/lib/helpers.php
@@ -1,8 +1,12 @@
<?php
-ORM::configure('mysql:host=' . Config::$dbHost . ';dbname=' . Config::$dbName);
-ORM::configure('username', Config::$dbUsername);
-ORM::configure('password', Config::$dbPassword);
+if(Config::$dbType == 'sqlite') {
+ ORM::configure('sqlite:' . Config::$dbFilePath);
+} else {
+ ORM::configure('mysql:host=' . Config::$dbHost . ';dbname=' . Config::$dbName);
+ ORM::configure('username', Config::$dbUsername);
+ ORM::configure('password', Config::$dbPassword);
+}
function render($page, $data) {
global $app;