All Projects → ParveenBhadooOfficial → Bhadoo Cloud

ParveenBhadooOfficial / Bhadoo Cloud

Licence: gpl-3.0
Directly Upload to Google Drive from Torrent or URLs

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Bhadoo Cloud

MiXLab
MiXLab is a mix of multiple amazing Colab Notebooks found on the internet such as rcloneLab, RLabClone, Torrent to Google Drive Downloader and some more.
Stars: ✭ 143 (+5.15%)
Mutual labels:  torrent, google-drive
Docker Squid
Dockerfile to create a Docker container image for Squid proxy server
Stars: ✭ 669 (+391.91%)
Mutual labels:  proxy, docker-image
MIRROR-HUNTER
Who are we? We are the Hunters of all Torrent in this world.🗡️.Fork from SlamDevs
Stars: ✭ 86 (-36.76%)
Mutual labels:  torrent, google-drive
Embetacloud
directly upload files to google drive
Stars: ✭ 164 (+20.59%)
Mutual labels:  google-drive, torrent
Airtable Proxy Worker
A Cloudflare Worker that allows you to make secure requests to the Airtable API from your frontend.
Stars: ✭ 87 (-36.03%)
Mutual labels:  proxy, cloudflare
Google Drive Index
Index Google Drive Files Easily and Free
Stars: ✭ 205 (+50.74%)
Mutual labels:  google-drive, cloudflare
Jackett
API Support for your favorite torrent trackers
Stars: ✭ 6,690 (+4819.12%)
Mutual labels:  proxy, torrent
Cloudflare Cors Anywhere
CORS "anywhere" proxy in a Cloudflare worker. DEMO at: https://test.cors.workers.dev/
Stars: ✭ 162 (+19.12%)
Mutual labels:  proxy, cloudflare
Torrent To Google Drive Downloader
Simple notebook to stream torrent files to Google Drive using Google Colab and python3.
Stars: ✭ 63 (-53.68%)
Mutual labels:  google-drive, torrent
Graphqldockerproxy
A generic Graphql API for Docker and Kubernetes
Stars: ✭ 38 (-72.06%)
Mutual labels:  proxy, docker-image
Google Drive Torrent
Download torrents to your Google Drive fast and direct
Stars: ✭ 149 (+9.56%)
Mutual labels:  google-drive, torrent
Goindex Theme Acrou
This is a goindex theme.一个goindex的扩展主题。
Stars: ✭ 1,332 (+879.41%)
Mutual labels:  google-drive, cloudflare
Flaresolverr
Proxy server to bypass Cloudflare protection
Stars: ✭ 241 (+77.21%)
Mutual labels:  proxy, cloudflare
Torrent-To-Google-Drive-Downloader
Simple notebook to stream torrent files to Google Drive using Google Colab and python3.
Stars: ✭ 256 (+88.24%)
Mutual labels:  torrent, google-drive
Psiphon
A multi-functional version of a popular network circumvention tool
Stars: ✭ 169 (+24.26%)
Mutual labels:  proxy, docker-image
Torrent To Google Drive Downloader
Simple notebook to stream torrent files to Google Drive using Google Colab.
Stars: ✭ 266 (+95.59%)
Mutual labels:  google-drive, torrent
Docker Dante Telegram
dante config builder for Telegram SOCKS-proxy & Dockerfile for building image with such proxy
Stars: ✭ 16 (-88.24%)
Mutual labels:  proxy, docker-image
Create Google Shared Drive
Cloudflare Redesigned Script for creating a Shared/Team Drive
Stars: ✭ 93 (-31.62%)
Mutual labels:  google-drive, cloudflare
Confluence
Torrent client as a HTTP service
Stars: ✭ 126 (-7.35%)
Mutual labels:  proxy, torrent
Autodl Trackers
Tracker files for autodl-community fork of autodl-irssi
Stars: ✭ 133 (-2.21%)
Mutual labels:  torrent

Fetch Torrents using .torrent file or Magnet Links, Fetch Files from Other Servers to Own Server and Upload to Google Drive.

Open URLs in Proxy to bypass Restrictions (works like VPN), Check Demo and Demo Site Status

Docker Cloud Automated build Docker Cloud Build Status Docker Pulls Docker Stars Docker Size Docker Version

GitHub repo size Build Status GitHub last commit GitHub

screenshot

Usage

Info: Heroku is not supported, Use AWS EC2 (1 Year Free), G Cloud (300$ for 1 Year Free), MS Azure (30 Days Free) for Bhadoo Cloud Installations.

Installation on AWS Cloud

  • Check Out the Video
  • Select an Ubuntu 18.xx Server Image
  • Use Putty to Login using SSH
  • Follow the below commands one by one.
  sudo apt-get update && sudo apt-get upgrade
  sudo apt-get install linux-image-extra-virtual
  sudo apt-get install \
    apt-transport-https \
    ca-certificates \
    curl \
    software-properties-common
  curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
  sudo apt-key fingerprint 0EBFCD88
  sudo add-apt-repository \
     "deb [arch=amd64] https://download.docker.com/linux/ubuntu \
     $(lsb_release -cs) \
     stable"
  sudo apt-get update
  sudo apt-get install docker-ce
  sudo docker run hello-world
  • You'll see a Line saying Hello World that means everything you've done worked till now
  sudo usermod -a -G docker $USER
  • Replace $USER with your username, it maybe be ubuntu by default.
  • Close Putty and Login again.
  • For Stable Installation (Recommended)
  docker run --name ct -d -p 80:3000 \
    --restart always \
    -e GOOGLE_CLIENT_ID='***' -e GOOGLE_CLIENT_SECRET='***' -e GOOGLE_REDIRECT_URL='***/oauthCallback' \
    parveenbhadoo/bhadoocloud:stable node server/server.js
  • For Latest Installation (Experimental, may not work)
  docker run --name ct -d -p 80:3000 \
    --restart always \
    -e GOOGLE_CLIENT_ID='***' -e GOOGLE_CLIENT_SECRET='***' -e GOOGLE_REDIRECT_URL='***/oauthCallback' \
    parveenbhadoo/bhadoocloud node server/server.js

Fill *** with appropriate values from Google Developer Console.

  • You can also Delete the Container using below if needed.
  sudo docker stop $(docker ps -a -q)
  sudo docker rm $(docker ps -a -q)
  • You can also remove pulled image to pull latest image again.
  sudo docker images -a
  
  sudo docker rmi Image Image2

Replace Image with Docker Image ID (Multiple Supported)

Install on AWS Lightsail

  • This will install and deploy (GDrive won't work)
bash <(curl -s https://raw.githubusercontent.com/ParveenBhadooOfficial/Bhadoo-Cloud/master/aws-lightsail-install.sh)
  • This will install requirements only (edit next command with required details)
bash <(curl -s https://raw.githubusercontent.com/ParveenBhadooOfficial/Bhadoo-Cloud/master/aws-lightsail-install-advanced.sh)
  • Fill *** with required details first
sudo docker run --name ct -d -p 80:3000 --restart always -e GOOGLE_CLIENT_ID='***' -e GOOGLE_CLIENT_SECRET='***' -e GOOGLE_REDIRECT_URL='***/oauthCallback' parveenbhadoo/bhadoocloud node server/server.js

Get Google_Client_ID and Secret

  • Open Google Dev Credentials Site.
  • Create a Project, name as you like.
  • Enable Drive API
  • In Credentials Page Click Create Credentials and then Click OAuth Client ID.
  • Select Web Application.
  • In Authorized JavaScript origins enter your domain name or IP whichever you are using for Bhadoo Cloud.
  • In Authorized redirect URIs enter your domain name or IP with /oauthCallback at last.
  • Use http:// or https:// as available.
  • If you are using Cloudflare for website use https:// and Set Flexible HTTPS in Cloudflare.
  • Copy your details and use above.
  • GOOGLE_REDIRECT_URL is same as Authorized redirect URIs

Resources

Build from github.com/Mrigank11/embetacloud and github.com/jpillora/cloud-torrent

License GPLv3

Contributions are Welcome.

Donate for Public Server Maintenance

Supported By

BrowserStack

Supported by BrowserStack, which allows us to test projects online with any browser as a service. :-)

Document Last Updated on 08:38 am Friday, 25 October 2019 (IST).

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].