teldrive/README.md

144 lines
5.2 KiB
Markdown
Raw Normal View History

2023-08-17 20:48:15 +08:00
<h1 align="center"> Fast Telegram Drive</h1>
2023-08-16 05:53:02 +08:00
<details open="open">
<summary>Table of Contents</summary>
<ol>
<li>
<a href="#how-to-make-your-own">How to make your own</a>
<ul>
<li><a href="#deploy-using-docker-compose">Deploy using docker-compose</a></li>
2023-08-17 20:45:00 +08:00
<li><a href="#deploy-without-docker-compose">Deploy without docker-compose</a></li>
2023-08-16 05:53:02 +08:00
</ul>
</li>
<li><a href="#setting-up-things">Setting up things</a></li>
<ul>
<li><a href="#mandatory-vars">Mandatory Vars</a></li>
<li><a href="#optional-vars">Optional Vars</a></li>
</ul>
</ol>
</details>
## Demo
![demo](./public/demo.png)
2023-08-16 21:15:53 +08:00
[UI Repo ](https://github.com/divyam234/teldrive-ui)
2023-08-16 05:53:02 +08:00
### Deploy using docker-compose
First clone the repository
```sh
git clone https://github.com/divyam234/teldrive
cd teldrive
```
2023-08-17 20:14:33 +08:00
**Follow Below Steps**
- Create the `.env` file with your variables and start your container.
- **If you are deploying without https replace nginx.conf with nginx_nossl.conf
in docker-compose.yml**.
**It should look like this below if you are not using https.**
2023-08-16 05:53:02 +08:00
```yml
volumes:
- ./nginx_nossl.conf:/etc/nginx/conf.d/default.conf
2023-08-16 21:15:53 +08:00
ports:
- 8000:8000
2023-08-16 05:53:02 +08:00
```
```sh
docker compose up -d
```
2023-08-17 20:14:33 +08:00
### Deploy without docker-compose
First clone the repository
```sh
git clone https://github.com/divyam234/teldrive
```
**Follow Below Steps**
- Fork UI Repo given above and Deploy it to Vercel.
- Download release binary of teldrive from releases section.
- .env file will be same as mentioned above and additionally set variables mentioned below.As vercel app is hosted on https so we need local server also on https so that cookies works.
2023-08-17 20:14:33 +08:00
```shell
HTTPS=true
COOKIE_SAME_SITE=false
2023-08-17 20:14:33 +08:00
```
- Generate https cert and key for localhost using mkcert and put these in sslcerts directory where executable is present.
- If you are using windows make sure to add cert as trusted using mkcert or manually.(You can see mkcert cli how to add that)
- Rename generated cert and key as cert.pem and key.pem respectively.
2023-08-17 20:14:33 +08:00
- Now run the teldrive executable from releases.
- Finally change API URL from UI deployed on vercel to https://localhost:8080 in settings.
2023-08-17 20:14:33 +08:00
2023-08-16 05:53:02 +08:00
## Setting up things
2023-08-17 20:14:33 +08:00
If you're locally or remotely hosting, create a file named `.env` in the root directory and add all the variables there.
2023-08-16 05:53:02 +08:00
An example of `.env` file:
```sh
2023-08-16 21:15:53 +08:00
API_ID=1234
API_HASH=abc
CHANNEL_ID=1234
HTTPS=false
COOKIE_SAME_SITE=true
2023-08-16 21:15:53 +08:00
JWT_SECRET=abc
DATABASE_URL=abc
MULTI_CLIENT=true # true or false here
2023-08-16 05:53:02 +08:00
MULTI_TOKEN1=55838383:yourfirstmulticlientbottokenhere
MULTI_TOKEN2=55838383:yoursecondmulticlientbottokenhere
MULTI_TOKEN3=55838383:yourthirdmulticlientbottokenhere
```
2023-08-17 02:37:55 +08:00
**Multi Client Mode is recommended way to avoid flood errors and to enable max download speed if you are using downloaders like IDM and aria2c which use multiple connections to download files.**
2023-08-16 05:53:02 +08:00
### Mandatory Vars
Before running the bot, you will need to set up the following mandatory variables:
- `API_ID` : This is the API ID for your Telegram account, which can be obtained from my.telegram.org.
- `API_HASH` : This is the API hash for your Telegram account, which can also be obtained from my.telegram.org.
- `JWT_SECRET` : Used for signing jwt tokens
- `DATABASE_URL` : Connection String obtained from Postgres DB (you can use Neon db as free alternative fro postgres)
2023-08-17 02:37:55 +08:00
- `CHANNEL_ID` : This is the channel ID for the log channel where app will store files . To obtain a channel ID, create a new telegram channel (public or private), post something in the channel, forward the message to [@missrose_bot](https://telegram.dog/MissRose_bot) and **reply the forwarded message** with the /id command. Copy the forwarded channel ID and paste it into the this field.
2023-08-16 05:53:02 +08:00
### Optional Vars
In addition to the mandatory variables, you can also set the following optional variables:
- `HTTPS` : Only needed when frontend is deployed on vercel.
- `COOKIE_SAME_SITE` : Only needed when frontend is deployed on vercel.
2023-08-16 21:15:53 +08:00
- `MULTI_CLIENT` : Enable or Disable Multi Token mode. If true you have pass atleast one Multi Token
- `MULTI_TOKEN[1....]` : Recommended to add atleast 10-12 tokens
2023-08-16 05:53:02 +08:00
### For making use of Multi-Client support
> **Note**
> What it multi-client feature and what it does? <br>
> This feature shares the Telegram API requests between other bots to avoid getting floodwaited (A kind of rate limiting that Telegram does in the backend to avoid flooding their servers) and to make the server handle more requests. <br>
To enable multi-client, generate new bot tokens and add it as your environmental variables with the following key names.
`MULTI_TOKEN1`: Add your first bot token here.
`MULTI_TOKEN2`: Add your second bot token here.
you may also add as many as bots you want. (max limit is not tested yet)
`MULTI_TOKEN3`, `MULTI_TOKEN4`, etc.
> **Warning**
2023-08-16 21:15:53 +08:00
> Don't forget to add all these bots to the `CHANNEL_ID` as admin for the proper functioning
2023-08-16 05:53:02 +08:00
## FAQ
2023-08-16 21:15:53 +08:00
- How to get Postgres DB url ?
2023-08-17 02:37:55 +08:00
> You can spin up local postgres instance but its not recommended as there is lot of hassle in backup and transfering data.Recommended way is to use any free cloud postgres DB.I will recommend to use [Neon DB](https://neon.tech/).
2023-08-16 05:53:02 +08:00
## Contributing
2023-08-16 21:15:53 +08:00
Feel free to contribute to this project if you have any further ideas.
2023-08-16 05:53:02 +08:00