https://github.com/bgrochal/truesocialplatform
A social platform for sharing ideas and opinions without overwhelming content.
https://github.com/bgrochal/truesocialplatform
social-platform spring-web
Last synced: about 1 year ago
JSON representation
A social platform for sharing ideas and opinions without overwhelming content.
- Host: GitHub
- URL: https://github.com/bgrochal/truesocialplatform
- Owner: bgrochal
- Created: 2017-04-11T17:42:21.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2017-09-14T14:11:35.000Z (almost 9 years ago)
- Last Synced: 2025-02-17T11:43:11.890Z (over 1 year ago)
- Topics: social-platform, spring-web
- Language: Java
- Homepage:
- Size: 119 KB
- Stars: 1
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# True Social Platform
The True Social Platform is an implementation of simple social hub which allows sharing ideas and opinions without overhelming content.
Technology stack: Java, Spring framework.
## Prerequisites
You need to have the following tools installed:
- Java SE 1.8 (tested on 1.8.0_121)
- Apache Maven (tested on 3.3.9)
- MongoDB database server (tested on 3.2.10)
## Installation and Commissioning
Start your MongoDB server. This may be done by typing (in the project root directory):
```
mkdir db # Creating a directory for storing data
mongod --dbpath ./db # Starting the MongoDB server
```
To set up the whole infrastructure and deploy the application to a local Tomcat server, simply type:
```
mvn package
```
in the project root directory.