An open API service indexing awesome lists of open source software.

https://github.com/polilluminato/telegram2notion-quarkus

Quarkus application to save messages sent to a Telegram bot in a Notion database
https://github.com/polilluminato/telegram2notion-quarkus

java maven quarkus quarkusio

Last synced: 6 months ago
JSON representation

Quarkus application to save messages sent to a Telegram bot in a Notion database

Awesome Lists containing this project

README

          

# Telegram2Notion Quarkus






Telegram2Notion is a small application developed with the [Quarkus framework](https://quarkus.io/) with which it is possible to save links that are sent to a Telegram Bot in a Notion database. It is also possible to tag the links sent to the bot with hashtags to better organize your database.

Here is a small demo of the application:

![Telegram2Notion Quarkus Demo](./docs/videos/telegram-notion-quarkus-demo.gif)

With some small configurations you can configure the application to suit other use cases such as:

- send expenses and add custom tag
- send short messages to simulate a todo-list
- add appointments in a database with calendar view
- ... your imagination is the limit πŸ€“

You can read the blog post on my blog here: [Save Bookmarks to Notion Database with Telegram and Quarkus](https://blog.albertobonacina.com/save-bookmarks-to-notion-database-with-telegram-and-quarkus).

## πŸ“— Documentation

The project's documentation, made with [Docs.page](https://docs.page/) by [Invertase](https://invertase.io/), is at [Telegram2Notion Quarkus Docs](https://docs.page/polilluminato/telegram2notion-quarkus)

## πŸš€ Deploy

As a Quarkus application made with [Maven](https://maven.apache.org/index.html) you can build an _ΓΌber-jar_ with the following command:

```bash
./mvnw package -Dquarkus.package.type=uber-jar
```

and run on a server with Java installed with:

```bash
nohup java -jar telegram2notion-*.jar &
```

more information can be found in the [Quarkus docs](https://docs.page/polilluminato/telegram2notion-quarkus/pages/quarkus-doc) section of the documentation.

## πŸ’Ž Contributing

If you have any idea, feel free to fork it and submit your changes back to me.

## πŸ“‹ License

```
Copyright 2023 Alberto Bonacina

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
```