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
- Host: GitHub
- URL: https://github.com/polilluminato/telegram2notion-quarkus
- Owner: polilluminato
- License: apache-2.0
- Created: 2022-10-01T20:55:45.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2023-04-29T12:51:12.000Z (over 2 years ago)
- Last Synced: 2025-02-10T02:16:03.040Z (8 months ago)
- Topics: java, maven, quarkus, quarkusio
- Language: HTML
- Homepage:
- Size: 5.11 MB
- Stars: 1
- Watchers: 2
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE.md
- Code of conduct: CODE_OF_CONDUCT.md
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:

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 BonacinaLicensed 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 athttp://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.
```