Mess around buildpacks

pull/1/head
hikariatama 2022-05-30 17:34:19 +00:00
parent bb96c7ca3b
commit bd221fcb8d
2 changed files with 2 additions and 4 deletions

View File

@ -14,11 +14,9 @@ from . import utils
def publish(
clients: list,
key: str,
api_token: Optional[str] = None,
create_new: Optional[bool] = True,
full_match: Optional[bool] = False,
):
"""Push to heroku"""
logging.debug("Configuring heroku...")
@ -38,9 +36,9 @@ def publish(
"https://github.com/heroku/heroku-buildpack-python",
"https://github.com/hikariatama/heroku-buildpack",
"https://github.com/jonathanong/heroku-buildpack-ffmpeg-latest",
"https://github.com/heroku/heroku-buildpack-apt",
"https://github.com/DuckyTeam/heroku-buildpack-imagemagick",
"https://github.com/jontewks/puppeteer-heroku-buildpack",
"https://github.com/heroku/heroku-buildpack-nodejs",
]
)

View File

@ -690,7 +690,7 @@ class Hikka:
"This process might take several minutes, be patient."
)
app = heroku.publish(self.clients, key, self.api_token)
app = heroku.publish(key, self.api_token)
print(
"Installed to heroku successfully!\n"
"🎉 App URL: {}".format(app.web_url)