Skip to content

Latest commit

 

History

History
29 lines (22 loc) · 1.04 KB

README.md

File metadata and controls

29 lines (22 loc) · 1.04 KB

CurrencyCounterTgBot

The main goal of this project is to create a telegram bot for currency conversioning. To do this, you have to open your Telegram app, find @currencyCounterBot, type /start and follow the bot's instructions

Notes

Prerequisites

  • JDK 17
  • Docker
  • Maven

Run & Test

General:

  1. Download the project
  2. Go to the project main directory

To run it using Docker:

  1. docker compose up

To run it from jar:

  1. docker compose up -d db
  2. mvn clean install
  3. java -jar ./target/demo-0.0.1-SNAPSHOT.jar

To run tests with reports:

  1. docker compose up -d db
  2. mvn clean test