Current project is example of using Spring + JPA + PostgreSQL for backend and react + redux for frontend parts.
For run project
- install maven
- install postgreSQ, run it and create database
- add to src/main/resources file "application.properties" with your db config (like:
spring.datasource.url=jdbc:postgresql://localhost:5432/{database}
spring.datasource.username={bd userneme}
spring.datasource.password={bd passwo}
spring.jpa.generate-ddl=true
) - run mvn install && mvn spring-boot:run