Alan turing portal (#815)

* [alan-turing-portal][m] - initial commit

* [alan-turing][m] - first page with search

* [alan-turing][m] - cleanup
This commit is contained in:
Luccas Mateus
2023-04-29 23:37:30 -03:00
committed by GitHub
parent 04b05c0896
commit f6b94ee254
30 changed files with 19083 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
import { MarkdownDB } from "@flowershow/markdowndb";
const dbPath = "markdown.db";
const client = new MarkdownDB({
client: "sqlite3",
connection: {
filename: dbPath,
},
});
const clientPromise = client.init();
export default clientPromise;