mirror of
https://github.com/chuot/rdio-scanner.git
synced 2026-08-13 08:33:00 -06:00
1 KiB
1 KiB
Sequelize
Definition
Rdio Scanner utilize Sequelize for its ORM.
You can define specific
{
"sequelize": {
// One of *sequelize* dialects
// Default is "sqlite"
"dialect": "sqlite",
// The host of your database server
// Default is undefined
"host": "localhost",
// The name of the database on the database server
// Default is undefined
"name": "rdio_scanner",
// The password to access your database server
// Default is undefined
"password": "password",
// The host of your database server
// Default is undefined
"port": 3306,
// The username to access your database server
// Default is undefined
"user": "rdio_scanner",
// Only for sqlite, which is recommended
// Default is "database.sqlite"
"storage": "database.sqlite",
}
}
It is recommended to give a try to sqlite which has very good performances.