move folder check
This commit is contained in:
@@ -1,9 +1,14 @@
|
||||
import fs from 'fs';
|
||||
import { verbose } from "sqlite3";
|
||||
import { validate as validateEmailAddress } from 'email-validator';
|
||||
import Database from "./index";
|
||||
|
||||
const sqlite3 = verbose();
|
||||
|
||||
if (!fs.existsSync('./data')) {
|
||||
fs.mkdirSync('./data');
|
||||
}
|
||||
|
||||
const db = new sqlite3.Database('./data/chat.sqlite');
|
||||
|
||||
// interface ChatRow {
|
||||
|
@@ -95,12 +95,8 @@ export default class ChatServer {
|
||||
}
|
||||
|
||||
async initialize() {
|
||||
if (!fs.existsSync('./data')) {
|
||||
fs.mkdirSync('./data');
|
||||
}
|
||||
|
||||
await this.objectStore.initialize();;
|
||||
await this.database.initialize();;
|
||||
await this.objectStore.initialize();
|
||||
await this.database.initialize();
|
||||
|
||||
try {
|
||||
this.app.listen(port, () => {
|
||||
|
@@ -1,8 +1,13 @@
|
||||
import fs from 'fs';
|
||||
import { verbose } from "sqlite3";
|
||||
import ObjectStore from "./index";
|
||||
|
||||
const sqlite3 = verbose();
|
||||
|
||||
if (!fs.existsSync('./data')) {
|
||||
fs.mkdirSync('./data');
|
||||
}
|
||||
|
||||
const db = new sqlite3.Database('./data/object-store.sqlite');
|
||||
|
||||
export interface StoredObject {
|
||||
|
Reference in New Issue
Block a user