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/
heroku login
to login, then heroku container:login
too.git config --global core.autocrlf false
before git clone
if you are using Windows.)heroku apps:create APP_NAME
to create it..env.template
to .env
, and edit it accordingly.heroku container:push web -a APP_NAME
and heroku container:release web -a APP_NAME
.heroku open -a APP_NAME
and it will open your browser to deployed instance. rclone.conf
file, it should look like this:[DRIVENAME]
type = WHATEVER
client_id = WHATEVER
client_secret = WHATEVER
scope = WHATEVER
token = WHATEVER
others entries...
type = ...
to ... token = ...
section.\n
.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.