This was my final assignment submission for a Full Stack Developer Bootcamp (MEAN), which achieved top marks back in 2023. While certain best practices were studied and clarified, for the purposes of this assignment, we were instructed to deviate from them to simplify the examiner's review process.
- Make sure you have MongoDB up and running, and that it is accessible at
mongodb://localhost:27017
- Make sure you have Node installed (I am using v16.15.0)
- Open terminal in
./Backend/
- Install dependencies with
npm install
- Run
npm start
- When the terminal confirms the connection, visit
http://localhost:4000/init/drop
to drop eventual conflicting collections. If you don't have any, you will get an error because you are trying to drop what doesn't exist. You can visit this endpoint again in the future if you ever want to re-initialise or clean your Mongo environment. - Now, visit
http://localhost:4000/init
to initialise the database, which should now have 2 collections in a dataset calledshyentist
:users
andproducts
- Visit
http://localhost:4000
to start from the Home page
Two users are initialised, one as a client, the other as an admin. To Log in, visit http://localhost:4000/login
. For the client account, insert email: [email protected]
and password oraoraora
. For the admin account, insert email: [email protected]
and password Shyentist
.