Simple bank account management system to practice Kotlin and Spring Boot.
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 |
- Build application using Gradle:
./gradlew clean build
- Run provided Docker Compose file:
docker-compose up -d
- The application will be started on port 8080