fix(server/utils): update spelling of db name env variable

This commit is contained in:
☙◦ The Tablet ❀ GamerGirlandCo ◦❧ 2024-11-12 16:47:16 -05:00
parent fc8838fdbd
commit c3c4ac719b
Signed by: tablet
GPG Key ID: 924A5F6AF051E87C

View File

@ -122,7 +122,7 @@ export const rc: RuntimeConfig & any = {
database: {
user: process.env.DBUSER,
password: process.env.DBPASS,
name: process.env.DBNAME,
name: process.env.DB_NAME,
uri: `mongodb://${process.env.DB}`,
},
jwt: process.env.JWT,