I'm not a Typescript or MongoDB guy, but it looks ...
# ask-questions
g
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
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