A social network where people can vent and only vent about whatever they like or rather dislike.
-
Install MongoDB for your platform.
-
Install NodeJS for your platform.
-
Install nodemon which will automatically restart the server when there are code changes
npm install -g nodemon
-
In the project root run
npm install
to install all the node dependencies found in the package.json file. -
Run
seed
in the project root to seed the database. -
To start the server use
nodemon server.js
. -
Now navigate to the application by entering
http:\\localhost:8080
in your browser. -
Create a new user by clicking Register and Login with that user.
Note: Commenting on a seeded post will not work as the comments and posts are not mapped in the seed data. Create a new post and comment/like to test the functionality.
- Like/Unlike and Comment in the Timeline, Profile views (Works for Individual Post View.)
- Caching issues (Lingering user details that go away only after page refresh.)
P.S. This is just a hobby learning project using the MEAN Stack.
P.P.S I am not really anti-social.