From 1a218f59578a6e0ecb59c70b11777d8035139fdf Mon Sep 17 00:00:00 2001 From: Kirill Markin Date: Mon, 30 Dec 2024 13:18:14 +0100 Subject: [PATCH] heroku settings fix --- README.md | 1 - app.json | 4 ++-- heroku.yml | 2 +- 3 files changed, 3 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 7df89654..36f5e1da 100644 --- a/README.md +++ b/README.md @@ -322,6 +322,5 @@ This project is licensed under the **Apache License 2.0**. You may obtain a copy - Keycloak Admin: Username `admin`, password is auto-generated (check your Heroku app config vars) 6. Important Notes: - - The PostgreSQL hobby-dev plan has a 10,000 row limit - Heroku's container stack has a startup timeout of 60 seconds - File storage is ephemeral - use external storage for production diff --git a/app.json b/app.json index bf644817..8337cbcd 100644 --- a/app.json +++ b/app.json @@ -24,8 +24,8 @@ } }, "addons": [ - "heroku-postgresql:hobby-dev", - "heroku-redis:hobby-dev" + "heroku-postgresql", + "heroku-redis" ], "formation": { "web": { diff --git a/heroku.yml b/heroku.yml index 20d137fe..0f2eb326 100644 --- a/heroku.yml +++ b/heroku.yml @@ -1,6 +1,6 @@ setup: addons: - - plan: heroku-postgresql:hobby-dev + - plan: heroku-postgresql build: docker: web: docker/Dockerfile.heroku