Sparky keeps it's data in database, by default it uses sqlite, following databases are supported:
- SQLite
- MySQL/MariaDB
- PostgreSQL
Following is an example for MySQL database, the same rules are applied for other database, like PostgreSQL, etc.
You should defined database engine and connection parameters, say we want to use MySQL:
$ nano ~/sparky.yaml
With content:
database:
engine: mysql
host: $dbhost
port: $dbport
name: $dbname
user: $dbuser
pass: $dbpassword
For example:
database:
engine: mysql
host: "127.0.0.1"
port: 3306
name: sparky
user: sparky
pass: "123"
Depending on platform it should be client needed for your database API, for example for Debian we have to:
$ sudo yum install mysql-client
DB init script will generate database schema, provided that user defined and sparky configuration file has access to the database:
$ raku db-init.raku
That is it, now Sparky runs under MySQL!