You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When you can run the "mongo" command in cmd set up a database called "wwub"
- Enter mongo termnial: mongo
- Create new database: use wwub
- Check currently selected database: db
Create a collection to hold users
- db.createCollection("users")
Crete a collection to hold items
- db.createCollection("items")
Backend code should attempt to connect to the "wwub database on localhost" so we should need to change anything in the code.