mirror of
https://github.com/spacebarchat/server.git
synced 2024-11-23 19:02:37 +01:00
npm i @fosscord/server-util@1.3.3
This commit is contained in:
parent
094ec2449e
commit
aa602fcace
4
.env.example
Normal file
4
.env.example
Normal file
@ -0,0 +1,4 @@
|
||||
MONGO_URL=mongodb://localhost/fosscord
|
||||
PORT=3002
|
||||
PRODUCTION=TRUE
|
||||
THREADS=# automatically use all available cores, only available if production = true
|
14
package-lock.json
generated
14
package-lock.json
generated
@ -9,7 +9,7 @@
|
||||
"version": "1.0.0",
|
||||
"license": "ISC",
|
||||
"dependencies": {
|
||||
"@fosscord/server-util": "^1.3.2",
|
||||
"@fosscord/server-util": "^1.3.3",
|
||||
"ajv": "^8.5.0",
|
||||
"dotenv": "^8.2.0",
|
||||
"jsonwebtoken": "^8.5.1",
|
||||
@ -31,9 +31,9 @@
|
||||
}
|
||||
},
|
||||
"node_modules/@fosscord/server-util": {
|
||||
"version": "1.3.2",
|
||||
"resolved": "https://registry.npmjs.org/@fosscord/server-util/-/server-util-1.3.2.tgz",
|
||||
"integrity": "sha512-OsrmWDVHzHedGMdas7M02jPM7yzP++M3rlzESNJA4uf19Pnp66Gqs1vQ9ls/QJsmC7Lzk9zczEW3XP9G+O0p3A==",
|
||||
"version": "1.3.3",
|
||||
"resolved": "https://registry.npmjs.org/@fosscord/server-util/-/server-util-1.3.3.tgz",
|
||||
"integrity": "sha512-fiEQQ93kOLXSTQBOW6PB5Th6ZHH1ozMP1nWeTjdnmr32g7X8BWJkmDMXWfKuR2PNuNr0eNJG4j1lbhIqefDqUA==",
|
||||
"dependencies": {
|
||||
"@types/jsonwebtoken": "^8.5.0",
|
||||
"@types/mongoose-autopopulate": "^0.10.1",
|
||||
@ -2217,9 +2217,9 @@
|
||||
},
|
||||
"dependencies": {
|
||||
"@fosscord/server-util": {
|
||||
"version": "1.3.2",
|
||||
"resolved": "https://registry.npmjs.org/@fosscord/server-util/-/server-util-1.3.2.tgz",
|
||||
"integrity": "sha512-OsrmWDVHzHedGMdas7M02jPM7yzP++M3rlzESNJA4uf19Pnp66Gqs1vQ9ls/QJsmC7Lzk9zczEW3XP9G+O0p3A==",
|
||||
"version": "1.3.3",
|
||||
"resolved": "https://registry.npmjs.org/@fosscord/server-util/-/server-util-1.3.3.tgz",
|
||||
"integrity": "sha512-fiEQQ93kOLXSTQBOW6PB5Th6ZHH1ozMP1nWeTjdnmr32g7X8BWJkmDMXWfKuR2PNuNr0eNJG4j1lbhIqefDqUA==",
|
||||
"requires": {
|
||||
"@types/jsonwebtoken": "^8.5.0",
|
||||
"@types/mongoose-autopopulate": "^0.10.1",
|
||||
|
@ -13,7 +13,7 @@
|
||||
"author": "Fosscord",
|
||||
"license": "ISC",
|
||||
"dependencies": {
|
||||
"@fosscord/server-util": "^1.3.2",
|
||||
"@fosscord/server-util": "^1.3.3",
|
||||
"ajv": "^8.5.0",
|
||||
"dotenv": "^8.2.0",
|
||||
"jsonwebtoken": "^8.5.1",
|
||||
|
@ -1,7 +1,7 @@
|
||||
import "missing-native-js-functions";
|
||||
import dotenv from "dotenv";
|
||||
dotenv.config();
|
||||
import { db } from "@fosscord/server-util";
|
||||
import { Config, db } from "@fosscord/server-util";
|
||||
import { Server as WebSocketServer } from "ws";
|
||||
import { Connection } from "./events/Connection";
|
||||
|
||||
@ -36,6 +36,7 @@ export class Server {
|
||||
// @ts-ignore
|
||||
await (db as Promise<Connection>);
|
||||
await this.setupSchema();
|
||||
await Config.init();
|
||||
console.log("[DB] connected");
|
||||
console.log(`[Gateway] online on 0.0.0.0:${port}`);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user