This commit is contained in:
expdsn 2025-03-04 15:54:57 +08:00
parent fb65612978
commit c96374ef1a
2 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
MONGODB_URI=mongodb://expdsn:58662@expdsn.cloud:27017
MONGODB_URI=mongodb://xyyd:xyydaibot12341234@47.96.180.195:4200/aibot?directConnection=true
# MONGODB_URI=mongodb://expdsn:58662@localhost:27017
SESSION_SECRET=lREDRcaFwZIzM7Rjw63XGj8trTyMqhVUsVwwhuTQnFs=
ALIYUN_RAM_ACCESS_KEY_ID=LTAI5tNzopZHJFa2Q9vqr1u5

View File

@ -24,7 +24,7 @@ if (process.env.NODE_ENV === 'development') {
}
export const getDb = async () => {
return (await clientPromise).db('ai-bot');
return (await clientPromise).db('aibot');
};
export const getCollection = async (collection: string) => {
const ins = await getDb();