I want to host a Telegram python bot which uses ArangoDB as its database. Can you help with creating ArangoDB on Heroku? GitHub repo for bot: https://github.com/mojurasu/kantek Edit: I am not sure if Heroku postgres will work with Arango
I want to host a Telegram python bot which uses ArangoDB as its database. Can you help with creating ArangoDB on Heroku? GitHub repo for bot: https://github.com/mojurasu/kantek Edit: I am not sure if Heroku postgres will work with Arango
Heroku is a service that offers hosting your stateless application in containers persisting your data with Postgres + Redis.
ArangoDB in contrast is a multi model Database - it keeps state for you, for which it needs storage volumes which Heroku doesn't offer.
As Heroku offers you managing databases of your application stack for you, it doesn't do so for ArangoDB.
If its about having a managed ArangoDB so you don't need to care about it, there is ArangoDB OASIS where you can get ArangoDB as a service, however, you need to manage your application containers on your own.