🐛 fix db connect
This commit is contained in:
parent
655d7db9ee
commit
2ffca731bd
5
package-lock.json
generated
5
package-lock.json
generated
@ -7,6 +7,7 @@
|
|||||||
"": {
|
"": {
|
||||||
"name": "fosscord-api",
|
"name": "fosscord-api",
|
||||||
"version": "1.0.0",
|
"version": "1.0.0",
|
||||||
|
"hasInstallScript": true,
|
||||||
"license": "ISC",
|
"license": "ISC",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"bcrypt": "^5.0.0",
|
"bcrypt": "^5.0.0",
|
||||||
@ -1362,7 +1363,7 @@
|
|||||||
},
|
},
|
||||||
"node_modules/fosscord-server-util": {
|
"node_modules/fosscord-server-util": {
|
||||||
"version": "1.0.0",
|
"version": "1.0.0",
|
||||||
"resolved": "git+ssh://git@github.com/fosscord/fosscord-server-util.git#637cfa6010dd00a399463f5a14869c169960d6e6",
|
"resolved": "git+ssh://git@github.com/fosscord/fosscord-server-util.git#7e25f67878a632529334f75677be76c474240a53",
|
||||||
"license": "ISC",
|
"license": "ISC",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"jsonwebtoken": "^8.5.1",
|
"jsonwebtoken": "^8.5.1",
|
||||||
@ -5076,7 +5077,7 @@
|
|||||||
"integrity": "sha1-mMI9qxF1ZXuMBXPozszZGw/xjIQ="
|
"integrity": "sha1-mMI9qxF1ZXuMBXPozszZGw/xjIQ="
|
||||||
},
|
},
|
||||||
"fosscord-server-util": {
|
"fosscord-server-util": {
|
||||||
"version": "git+ssh://git@github.com/fosscord/fosscord-server-util.git#637cfa6010dd00a399463f5a14869c169960d6e6",
|
"version": "git+ssh://git@github.com/fosscord/fosscord-server-util.git#7e25f67878a632529334f75677be76c474240a53",
|
||||||
"from": "fosscord-server-util@github:fosscord/fosscord-server-util",
|
"from": "fosscord-server-util@github:fosscord/fosscord-server-util",
|
||||||
"requires": {
|
"requires": {
|
||||||
"jsonwebtoken": "^8.5.1",
|
"jsonwebtoken": "^8.5.1",
|
||||||
|
@ -10,6 +10,7 @@ import i18nextMiddleware, { I18next } from "i18next-http-middleware";
|
|||||||
import i18nextBackend from "i18next-node-fs-backend";
|
import i18nextBackend from "i18next-node-fs-backend";
|
||||||
import { ErrorHandler } from "./middlewares/ErrorHandler";
|
import { ErrorHandler } from "./middlewares/ErrorHandler";
|
||||||
import { BodyParser } from "./middlewares/BodyParser";
|
import { BodyParser } from "./middlewares/BodyParser";
|
||||||
|
import mongoose from "mongoose";
|
||||||
|
|
||||||
export interface DiscordServerOptions extends ServerOptions {}
|
export interface DiscordServerOptions extends ServerOptions {}
|
||||||
|
|
||||||
@ -42,7 +43,7 @@ export class DiscordServer extends Server {
|
|||||||
|
|
||||||
async start() {
|
async start() {
|
||||||
// @ts-ignore
|
// @ts-ignore
|
||||||
await (db as Promise<Connection>);
|
await mongoose.connect(process.env.MONGO_URL);
|
||||||
await this.setupSchema();
|
await this.setupSchema();
|
||||||
console.log("[DB] connected");
|
console.log("[DB] connected");
|
||||||
await Promise.all([Config.init()]);
|
await Promise.all([Config.init()]);
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
import { NextFunction, Request, Response } from "express";
|
import { NextFunction, Request, Response } from "express";
|
||||||
import Config from "../util/Config";
|
import Config from "../util/Config";
|
||||||
import { db } from "fosscord-server-util";
|
|
||||||
|
|
||||||
// TODO: use mongodb ttl index
|
// TODO: use mongodb ttl index
|
||||||
// TODO: increment count on serverside
|
// TODO: increment count on serverside
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
import { NextFunction, Request, Response } from "express";
|
import { NextFunction, Request, Response } from "express";
|
||||||
import { db } from "fosscord-server-util";
|
|
||||||
|
|
||||||
import { getIpAdress } from "./GlobalRateLimit";
|
import { getIpAdress } from "./GlobalRateLimit";
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user