@lucidcms/sqlite-adapter
v1.0.2
Published
The official SQLite adapter for Lucid CMS
Maintainers
Readme
Lucid - SQLite Adapter
The official SQLite adapter for Lucid CMS
This package exports the SQLite adapter for Lucid CMS.
Installation
npm install @lucidcms/sqlite-adapterlucid.config.ts/js
import SQLiteAdapter from "@lucidcms/sqlite-adapter"
export default lucid.config({
db: new SQLiteAdapter({
database: async () => new Database("db.sqlite"),
}),
// ...other config
});