/posts-system

Social media posting system using Java Spring Boot and React

Primary LanguageJavaScript

Posts System

photo-2024-02-24-14-13-04

Simple posts system without user accounts.

Getting Started

Clone the repository:

git clone https://github.com/GalievDev/posts-system.git

Connect the MYSQL database in application.properties

# Database url
spring.datasource.url=jdbc:mysql://${MYSQL_HOST:localhost}/PostsSystem
# Login username of the database.
spring.datasource.username=login
# Login password of the database.
spring.datasource.password=password

Run backend-server with this command:

./gradlew bootRun

Run client-website:

npm start

In the console you will receive a link to your local site

Used Tools