Film Nerd is a MEAN Stack project. I built it during my Web Development class at Northeastern University. Film Nerd is a place where all the movie fans can browse for their favorite films. You can check out movies playing near you by ratings. You can rate, review movies, follow your favorite movie reviewer(s). Check Out everything about the film. (Genre, Runtime, release data, cast.)
- Check movies shown around you
- Rate and review movies
- Follow popular reviewers
- Check out the actors of a film
https://film-nerd.herokuapp.com/project/index.html
Video Link- nodeJs
- MongoDB
- ExpressJS
- Uncomment line 33 and comment line 32 in server.js
- Comment lines 14 to 18 in user.service.server.js
- You can run the project by running "node server.js"
To enable third party log in
- GOOGLE_CLIENT_ID
- GOOGLE_CLIENT_SECRET
- GOOGLE_CALLBACK_URL
Copyright 2016, Sesha Sai Srivatsav, All rights reserved.
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
- Node is installed
- Have an IDE
- MongoDB must be installed and must be kept running in terminal. See ## mongodb installation below
nvm use
npm install ## first time
npm ci ## otherwise
node server.js ## runs server on 3000Navigate to http://localhost:3000/#/
# If you still have the old mongodb installed from homebrew-core
brew services stop mongodb
brew uninstall homebrew/core/mongodb
# Use the migrated distribution from custom tap
brew tap mongodb/brew
brew install mongodb-community
brew services start mongodb-community
mongo ## starts the database
brew install mongocli ## install mongoDB cli
mongocli help ## verify installation
- mongod --dbpath=/Users/user/data/db

