Socialnet is the name of the project created as a simple software solution for my graduate work. The main purpose of the application is to create your own profile and find profiles of others. One of the functionalities that defines this social network as such is the ability to share text content with other users.
Repository is divided into two parts:
Before you start doing any of the following, make sure you have Node.js installed either on your computer or the server on which you're going to run the application. You can easily check if you have it installed by executing:
node -h
When done with git repository cloning, navigate to the socialnet and run next command to install node modules on the server:
npm install
After installing node modules on the server, navigate to client:
cd client/
Again, repeat the same to install node modules on the client:
npm install
Navigate to the socialnet, and start the web application by typing:
npm run dev