https://www.growthbook.io/ logo
g

gentle-jewelry-98561

10/21/2021, 6:19 PM
I'm not a Typescript or MongoDB guy, but it looks to me that GB is saving its data in a MongoDB Database called 'test'. is that right? Is there a way to make it use a better name?
f

future-teacher-7046

10/21/2021, 6:20 PM
Yes, you can specify the database name in the connection string.
Copy code
<mongodb://root:password@localhost:27017/growthbook>
(the
/growthbook
part at the end)
Changing this will effectively start you from a blank slate, so the new database won't have any user accounts, invites, etc. that you've set up already
🙌 1