Skip to content

Latest commit

 

History

History
30 lines (22 loc) · 1.63 KB

README.md

File metadata and controls

30 lines (22 loc) · 1.63 KB

Java CI with Gradle

Bank account management system

Simple bank account management system to practice Kotlin and Spring Boot.

Tech stack

Configuration parameters

Parameter Description Default Value
BANK_PORT Application server port 8080
BANK_DB_URL PostgreSQL DB URL jdbc:postgresql://localhost:5432/bank-db
BANK_DB_USER PostgreSQL DB user name postgres
BANK_DB_PASSWORD PostgreSQL DB user password postgres
BANK_LIQUIBASE_USER Liquibase PostgreSQL DB user name postgres
BANK_LIQUIBASE_PASSWORD Liquibase PostgreSQL DB user password postgres
BANK_LOG_LEVEL Logging level of bank-app info

How to run

  1. Build application using Gradle: ./gradlew clean build
  2. Run provided Docker Compose file: docker-compose up -d
  3. The application will be started on port 8080