Skip to content
This repository was archived by the owner on Feb 10, 2025. It is now read-only.

Commit dafa09f

Browse files
committed
Add README.md for TelegramFastNotesToWikiJS project
This commit introduces a README file for the TelegramFastNotesToWikiJS project, detailing its purpose, setup instructions, configuration guidance, and other additional information. The README also includes a step-by-step guide on cloning the repository, setting up the environment, and running the project using Docker Compose.
1 parent f6e0a6f commit dafa09f

File tree

7 files changed

+86
-0
lines changed

7 files changed

+86
-0
lines changed

README.md

+86
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,86 @@
1+
# TelegramFastNotesTo[WikiJs](https://github.com/requarks/wiki) 📝
2+
3+
## 🎯 Purpose
4+
TelegramFastNotesTo[WikiJs](https://github.com/requarks/wiki) is a tool designed to quickly write notes from Telegram to [Wiki.js](https://github.com/requarks/wiki). The project allows users to send photos and text messages to a Telegram bot, which automatically processes and writes this data to [Wiki.js](https://github.com/requarks/wiki).
5+
6+
## 🚀 How to start a project
7+
8+
### Using Docker Compose
9+
10+
Follow these steps to start a project using Docker Compose:
11+
12+
13+
### 1. Configure `env.env` in the project root:
14+
- `TelegramConfiguration__OwnerId`: Your Telegram chat ID.
15+
- `TelegramConfiguration__Token`: Your API key for the Telegram bot.
16+
- `WikiJsConfiguration__BaseUri`: The address where the GraphQl api [WikiJs](https://github.com/requarks/wiki) is available.
17+
- `WikiJsConfiguration__Token`: Your token that is used to access the GraphQl api [WikiJs](https://github.com/requarks/wiki).
18+
- `WikiJsPageTemplateConfiguration__Locale`: Localization of the quick note in [WikiJs](https://github.com/requarks/wiki).
19+
- `WikiJsPageTemplateConfiguration__Description`: Description of the quick note.
20+
- `WikiJsPageTemplateConfiguration__Editor`: Editor for the quick note.
21+
- `markdown`: **The application is designed for Markdown markup.**
22+
- `WikiJsJsPageTemplateConfiguration__IsPrivate`: Whether the quick note will be private.
23+
- `WikiJsJsPageTemplateConfiguration__IsPublished`: Whether the quick note will be published.
24+
- `WikiJsJsPageTemplateConfiguration__Path`: Path for storing quick notes.
25+
- `WikiJsJsPageTemplateConfiguration__Title`: The title of the quick note.
26+
- `WikiJsJsPageTemplateConfiguration__Tags__0`: Tag to be assigned to the quick note.
27+
28+
_Env example_
29+
```
30+
TelegramConfiguration__OwnerId=0
31+
TelegramConfiguration__Token=XX
32+
WikiJsConfiguration__BaseUri=http://XXX/graphql
33+
WikiJsConfiguration__Token=XX
34+
WikiJsPageTemplateConfiguration__Locale=en
35+
WikiJsPageTemplateConfiguration__Description=Fast note
36+
WikiJsPageTemplateConfiguration__Editor=markdown
37+
WikiJsPageTemplateConfiguration__IsPrivate=true
38+
WikiJsPageTemplateConfiguration__IsPublished=true
39+
WikiJsPageTemplateConfiguration__Path=fast-note/
40+
WikiJsPageTemplateConfiguration__Title=Fast note
41+
WikiJsPageTemplateConfiguration__Tags__0=fast-note
42+
```
43+
44+
### 1.1 🔑 Getting Api WikiJs data
45+
### 1.1.1 Getting a token
46+
![img.png](forreadme/img.png)
47+
48+
49+
![img_1.png](forreadme/img_1.png)
50+
51+
### 1.1.2 Getting the server address
52+
53+
![img_2.png](forreadme/img_2.png)
54+
55+
![img_3.png](forreadme/img_3.png)
56+
57+
**Server address `http://XXX/graphql`**
58+
59+
### ⚙️📝 1.2 Setting up a quick note
60+
- `WikiJsPageTemplateConfiguration__Locale`: Your localization. Example "en".
61+
![img_4.png](forreadme/img_4.png)
62+
63+
### 📲 1.3 Getting your Telegram token and ID
64+
To get your Telegram bot token and your personal ID, follow the steps below:
65+
- Create a new bot via @BotFather in Telegram and get the token.
66+
- To find out your Telegram ID, write to a special bot in Telegram, for example @userinfobot.
67+
### 2. Clone the repository
68+
```bash
69+
git clone https://github.com/DreamsAreReal/TelegramFastNotesToWikiJS
70+
```
71+
- Go to the TelegramFastNotesToWikiJS folder.
72+
- Run the project.
73+
```bash
74+
docker-compose build
75+
docker-compose --env-file env.env up -d
76+
```
77+
### 2.1 To stop the project, use the command:
78+
```bash
79+
docker-compose --env-file env.env.env down
80+
```
81+
## 📖 Additional information
82+
- **Project only accepts photos and text messages.**
83+
- **The application is designed for Markdown markup.**
84+
## 👀🔍 Demo
85+
![Animation.gif](forreadme/Animation.gif)
86+
## 🌟 Wishing you good luck using TelegramFastNotesToWikiJS! 🌟

forreadme/Animation.gif

4.42 MB
Loading

forreadme/img.png

151 KB
Loading

forreadme/img_1.png

70.2 KB
Loading

forreadme/img_2.png

170 KB
Loading

forreadme/img_3.png

67.6 KB
Loading

forreadme/img_4.png

135 KB
Loading

0 commit comments

Comments
 (0)