* [examples/ckan][m]: rplc @flowershow with @portaljs packages * [examples/fivethirtyeight][m]: rplc @flowershow with @portaljs packages * [examples/turing][m]: rplc @flowershow with @portaljs packages * [examples/openspending][m]: rplc @flowershow with @portaljs packages * [examples/learn][m]: rplc @flowershow with @portaljs packages * [examples/github-backed-catalog][m]: rplc @flowershow with @portaljs packages * [examples/github-backed-catalog][xs] - fix build * [examples][m] - fix builds * [examples/openspending][xs] - fix build --------- Co-authored-by: Luccas Mateus de Medeiros Gomes <luccasmmg@gmail.com>
15 lines
236 B
TypeScript
15 lines
236 B
TypeScript
import { MarkdownDB } from "mddb";
|
|
|
|
const dbPath = "markdown.db";
|
|
|
|
const client = new MarkdownDB({
|
|
client: "sqlite3",
|
|
connection: {
|
|
filename: dbPath,
|
|
},
|
|
});
|
|
|
|
const clientPromise = client.init();
|
|
|
|
export default clientPromise;
|