It it recommended to find other platform than Heroku to deploy this as they are actively prevent this from deploying there. You can find many free platforms here: https://free-for.dev/
- Docker
- Heroku CLI
- git
- Ability to use terminal
- Run
heroku login
to login, thenheroku container:login
too. - Clone this repository and enter it. (PS: Please run
git config --global core.autocrlf false
beforegit clone
if you are using Windows.) - Run
heroku apps:create APP_NAME
to create it. - Copy
.env.template
to.env
, and edit it accordingly. - Run
heroku container:push web -a APP_NAME
andheroku container:release web -a APP_NAME
. - Run
heroku open -a APP_NAME
and it will open your browser to deployed instance.
- Setup Rclone locally by following offical instructions: https://rclone.org/docs/
- Find your
rclone.conf
file, it should look like this:
[DRIVENAME]
type = WHATEVER
client_id = WHATEVER
client_secret = WHATEVER
scope = WHATEVER
token = WHATEVER
others entries...
- Find the drive you want to use, and copy its
type = ...
to... token = ...
section. - Replace all linebreaks with
\n
. - That text will be
RCLONE_CONFIG
in.env
file. DOWNLOAD_DESTINATION
in.env
is a path starting with/
.
It is because Heroku's free dyno will idle when there is no incoming request within 30 minutes, and your files will be deleted too, this is why you might want to use Rclone.
No. Just wait for its idling, and your files will be deleted.
It will generate fake requests when there are downloading or uploading tasks, so it won't idle when your files aren't completed.