Skip to content

Latest commit

 

History

History
executable file
·
39 lines (27 loc) · 779 Bytes

File metadata and controls

executable file
·
39 lines (27 loc) · 779 Bytes

Getting Started

1. Install PostgreSQL

sudo docker pull postgres
docker run -d --name postgres_container -p 5432:5432 -e POSTGRES_PASSWORD=postgres postgres

2. Install Redis Stack

sudo docker pull redis/redis-stack-server:latest
sudo docker run -d --name redis-stack-server -p 6379:6379 redis/redis-stack-server:latest

3. Start Application

  1. Execute the Spring Boot application:
    Run CoreBackendApplication via your IDE or with Maven.

  2. Access the REST API:
    http://localhost:8081/api

  3. Run tests:

    mvn test

Tip:
Make sure Docker is running and the containers are up before starting the application.