forked from SHIVAMELU/File
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add support deployed on vps and clean up startup
- Loading branch information
1 parent
699ff18
commit 396aa16
Showing
7 changed files
with
51 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
worker: python3 main.py | ||
worker: bash start |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
feedparser | ||
psycopg2-binary | ||
pyrogram | ||
TgCrypto | ||
python-dotenv | ||
Pyromod | ||
sqlalchemy~=1.3.23 | ||
psycopg2-binary | ||
feedparser | ||
sqlalchemy==1.3.23 | ||
TgCrypto |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
python-3.9.9 | ||
python-3.9.10 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
# Masukan APP ID ambil di web my.telegram.org | ||
APP_ID = "6" | ||
|
||
# Masukan API HASH ambil di web my.telegram.org | ||
API_HASH = "eb06d4abfb49dc3eeb1aeb98ae0f581e" | ||
|
||
# Masukan BOT TOKEN dari @botfather | ||
TG_BOT_TOKEN = "10010102:2abcdefghij" | ||
|
||
# Masukan User ID untuk hak ADMINS bot | ||
ADMINS = "1234567890" | ||
|
||
# Masukan Username Telegram mu tanpa @ | ||
OWNER = "mrismanaziz" | ||
|
||
# Masukan User id untuk hak owner | ||
OWNER_ID = "1234567890" | ||
|
||
# Masukan Username Channel mu tanpa @ | ||
CHANNEL = "Lunatic0de" | ||
|
||
# Masukan Username Group mu tanpa @ | ||
GROUP = "SharingUserbot" | ||
|
||
# Masukan Chat ID dari Group Untuk Wajib Subscribenya | ||
FORCE_SUB_GROUP = | ||
|
||
# Masukan Chat ID dari Channel Untuk Wajib Subscribenya | ||
FORCE_SUB_CHANNEL = | ||
|
||
# Masukan ID Channel Untuk [Channel Database] | ||
CHANNEL_ID = | ||
|
||
# URL Database Anda, Ambil dari https://elephantsql.com | ||
# Contoh: "postgres://userbot:userbot@localhost:5432/userbot" | ||
DATABASE_URL = "" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
python3 main.py |