removed sqlite dependency and made dirty the default db

This commit is contained in:
Peter 'Pita' Martischka 2011-08-17 12:30:35 +01:00
parent 5da30a40bf
commit 95b1ac9393
2 changed files with 3 additions and 3 deletions

View file

@ -11,7 +11,7 @@
], ],
"dependencies" : { "dependencies" : {
"socket.io" : "0.7.9", "socket.io" : "0.7.9",
"ueberDB" : "0.0.15", "ueberDB" : "0.1.0",
"async" : "0.1.9", "async" : "0.1.9",
"joose" : "3.18.0", "joose" : "3.18.0",
"express" : "2.4.4", "express" : "2.4.4",

View file

@ -9,10 +9,10 @@
"port" : 9001, "port" : 9001,
//The Type of the database. You can choose between sqlite and mysql //The Type of the database. You can choose between sqlite and mysql
"dbType" : "sqlite", "dbType" : "dirty",
//the database specific settings //the database specific settings
"dbSettings" : { "dbSettings" : {
"filename" : "../var/sqlite.db" "filename" : "../var/dirty.db"
}, },
/* An Example of MySQL Configuration /* An Example of MySQL Configuration