Skip to content

Latest commit

 

History

History
49 lines (39 loc) · 1.36 KB

setup.md

File metadata and controls

49 lines (39 loc) · 1.36 KB

Bookstore Application Setup Guide

Frontend Setup

Prerequisites

  • Node.js and npm (Node Package Manager)

Steps

  1. Navigate to the frontend directory:
    cd frontend
  2. Install the required npm packages:
    npm install
  3. Start the frontend application:
    npm start

Backend Setup

Prerequisites

  • Java JDK
  • Maven

Steps

  1. Navigate to the backend directory:
    cd backend
  2. Build the project using Maven:
    mvn clean install
  3. Run the Spring Boot application:
        mvn spring-boot:run

Configurations

Inside the application.properties file in the backend, you will find all necessary configurations for the services used. Make sure to change them according to your setup, including endpoints and configurations for Kafka, MySQL, Redis, Neo4j, GraphQL, and MongoDB.

Additional Setup for Services

For detailed instructions on installing and setting up external services, please refer to the following official documentation:

Ensure that these services are correctly set up and running before starting the application.