This project uses Quarkus, the Supersonic Subatomic Java Framework.
If you want to learn more about Quarkus, please visit its website: https://quarkus.io/ .
-
Workflow script in the resources/youtrackWorkflow/youtrackScript.js, just set your url to the var connection.
-
For test you can use ngrok for open you localhost to the internet (telegram webhook needs https).
-
Sql script for postgresql in the resources/sql/youtrack_telegram_connect.sql
-
You should create a bot and set webhook by following link https://api.telegram.org/bot{my_bot_token}/setWebhook?url={url_to_send_updates_to}
-
If you need i18n you can extend message.properties with needed lang and get locale by Locale.forLanguageTag(telegramMessage.getMessage().getFrom().getLanguageCode());
-
Other settings in the application.properties.
You can run your application in dev mode that enables live coding using:
./gradlew quarkusDev
The application can be packaged using:
./gradlew build
It produces the youtrack-telegram-1.0.0-SNAPSHOT-runner.jar
file in the /build
directory.
Be aware that it’s not an über-jar as the dependencies are copied into the build/lib
directory.
If you want to build an über-jar, execute the following command:
./gradlew build -Dquarkus.package.type=uber-jar
The application is now runnable using java -jar build/youtrack-telegram-1.0.0-SNAPSHOT-runner.jar
.
You can create a native executable using:
./gradlew build -Dquarkus.package.type=native
Or, if you don't have GraalVM installed, you can run the native executable build in a container using:
./gradlew build -Dquarkus.package.type=native -Dquarkus.native.container-build=true
You can then execute your native executable with: ./build/youtrack-telegram-1.0.0-SNAPSHOT-runner
If you want to learn more about building native executables, please consult https://quarkus.io/guides/gradle-tooling.