Skip to content

Commit a1cf5f9

Browse files
committed
reeadme
1 parent b764d20 commit a1cf5f9

4 files changed

Lines changed: 95 additions & 2 deletions

File tree

.dockerignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ session_name.session
77
session_name.session-journal
88
system_usage.log
99
test.py
10+
serverInfo.txt
11+
readme.md
1012

1113
# Ignore Python cache files
1214
__pycache__

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,5 @@ addresses.txt
44
*.session-journal
55
session_name.session
66
session_name.session-journal
7-
system_usage.log
7+
system_usage.log
8+
serverInfo.txt

docker-compose.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,12 @@ services:
1111
CHANNEL_INVITE_LINK: '[]' # Make sure this is a valid JSON array as a string
1212
stdin_open: true # Keep stdin open for interactive mode
1313
tty: true # Enable a terminal for interactive use
14-
restart: "no" # Prevent auto-restart during debugging
14+
restart: "no" # Prevent auto-restart during debugging
15+
16+
17+
18+
# TEST CHANEL
19+
# https://t.me/+J2FjYDsfcyU2NzZk
20+
21+
# YEZUS
22+
# https://t.me/cryptoyeezuscalls

readme.md

Lines changed: 82 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,82 @@
1+
# Instructions
2+
3+
#### 1. Login to Their Telegram on Browser Using Thier Phone Number
4+
5+
#### 2. Create Telegram app and get info:
6+
7+
1. Go to -> https://my.telegram.org/apps
8+
2. Get the api_id
9+
3. Get the api_hash
10+
4. App Title -> Chat to Trojan
11+
5. Stort -> Deez
12+
13+
#### 3. On Telegram Add @solana_trojanbot Bot
14+
15+
#### 4. Join the chanel (https://t.me/cryptoyeezuscalls)
16+
17+
#### 5. Deploy Test Container with their details
18+
19+
1. send a test message
20+
2. send a test coin
21+
22+
#### 6. Deploy Production Container with Channel
23+
```
24+
https://t.me/cryptoyeezuscalls
25+
```
26+
27+
28+
# Docker Commands
29+
30+
#### See Active Containers
31+
```
32+
docker ps
33+
```
34+
35+
#### See All Containers
36+
```
37+
docker ps -a
38+
```
39+
40+
#### Start Container
41+
```
42+
docker start -i <name>
43+
```
44+
45+
#### Stop Container
46+
Graceful Stop
47+
```
48+
docker stop <name>
49+
```
50+
Force Kill
51+
```
52+
docker kill <name>
53+
```
54+
55+
#### Remove Container
56+
```
57+
docker rm NAME
58+
```
59+
60+
#### Interact With Container
61+
```
62+
docker attach NAME
63+
```
64+
65+
Exit Interact
66+
```
67+
Exit -> Ctrl + P -> Ctrl + Q
68+
```
69+
#### Create Container
70+
```
71+
docker run -it \
72+
--name <name> \
73+
-e API_ID="" \
74+
-e API_HASH="" \
75+
-e PHONE_NUMBER="" \
76+
-e TROJAN_BOT_CHAT_ID="@solana_trojanbot" \
77+
-e CHANNEL_INVITE_LINK='[""]' \
78+
--restart=no \
79+
--tty \
80+
--interactive \
81+
umarraj008/my-python-app
82+
```

0 commit comments

Comments
 (0)