Skip to content

Latest commit

 

History

History
45 lines (32 loc) · 822 Bytes

API.md

File metadata and controls

45 lines (32 loc) · 822 Bytes

InsightHub API

The insight hub API is completely free.

Requirements

  • JAVA 17
  • Maven
  • Git
  • MySql

Installation and Execution

  • clone the repository:

    git clone https://github.com/rodriguesxxx/InsightHub.git
  • access the api folder:

    cd api
  • configure the application:

    cd src/main/resources
    cp application.copy.properties application.properties
    nano application.properties #or > code application.properties

    Enter your database information

  • I started a redis docker image:

    docker run --name insighthub-redis -p 6379:6379 -d redis
  • start the api:

    cd ../../../ #go back to the root
    mvn spring-boot:run