Skip to content

Latest commit

 

History

History
14 lines (12 loc) · 601 Bytes

README.md

File metadata and controls

14 lines (12 loc) · 601 Bytes

spring-react-postgreSQL example

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