Skip to content

Loan Management (Express.js, Spring Boot and MySQL)

Notifications You must be signed in to change notification settings

shounoop/loan-management-be

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Loan Management (Express.js, Spring Boot and MySQL)

Run the System

We can easily run the whole with only a single command:

docker compose up

Docker will pull the MySQL and Spring Boot images (if our machine does not have it before).

The services can be run on the background with command:

docker compose up -d

Stop the System

Stopping all the running containers is also simple with a single command:

docker compose down

If you need to stop and remove all containers, networks, and all images used by any service in docker-compose.yml file, use the command:

docker compose down --rmi all

Run following SQL insert statements

INSERT INTO roles(name) VALUES('SUPER_ADMIN');
INSERT INTO roles(name) VALUES('ADMIN');

About

Loan Management (Express.js, Spring Boot and MySQL)

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published