Updated more things with postgres move

This commit is contained in:
2024-04-11 19:04:39 +02:00
parent 84e58fa936
commit a87e367217
2 changed files with 5 additions and 6 deletions

View File

@@ -9,14 +9,13 @@ services:
restart: unless-stopped
logging:
driver: journald
volumes:
- ${DB_PATH}:/app/data
environment:
- TOKEN=${TOKEN}
- MONGOURI=${MONGOURI}
- DEV=${DEV}
- HYPIXELAPIKEY=${HYPIXELAPIKEY}
- REDISURI=${REDISURI}
- POSTGRESURI=${POSTGRESURI}
db:
container_name: postgres
image: postgres

View File

@@ -2,7 +2,7 @@ import { ExtendedClient as Client } from "utils/Client"
import color from "utils/functions/colors"
import { Redis } from "ioredis"
import env from "utils/Env"
import { connect } from "mongoose"
// import { connect } from "mongoose"
import loadAllEvents from "./Events"
import { Player } from "discord-player"
import { Sequelize } from "sequelize"
@@ -32,9 +32,9 @@ class Illegitimate {
redis.on("ready", () => {
console.log(color("Connected to Redis", "green"))
})
connect(env.prod.mongoURI!, {}).then(() => {
console.log(color("Connected to MongoDB", "green"))
})
// connect(env.prod.mongoURI!, {}).then(() => {
// console.log(color("Connected to MongoDB", "green"))
// })
sequelize.sync().then(() => {
console.log(color("Connected to Postgres", "green"))
})