From 888379c14df4f6dc7fb32982bc47b2df73e462f5 Mon Sep 17 00:00:00 2001 From: Tom Konidas Date: Wed, 19 Jun 2024 20:10:59 -0400 Subject: [PATCH] Scale up image --- fly.toml | 4 ++++ lib/plexus_web/live/admin/app_live/index.ex | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/fly.toml b/fly.toml index 1510886e..df057e1e 100644 --- a/fly.toml +++ b/fly.toml @@ -43,3 +43,7 @@ kill_timeout = "5s" timeout = "2s" grace_period = "1s" restart_limit = 0 + +[[vm]] + size = "shared-cpu-2x" + memory = "1gb" diff --git a/lib/plexus_web/live/admin/app_live/index.ex b/lib/plexus_web/live/admin/app_live/index.ex index dc0db4e2..769b832c 100644 --- a/lib/plexus_web/live/admin/app_live/index.ex +++ b/lib/plexus_web/live/admin/app_live/index.ex @@ -9,7 +9,7 @@ defmodule PlexusWeb.Admin.AppLive.Index do if connected?(socket), do: Apps.subscribe() {entries, page_metadata} = - [scores: true, order_by: :name, page_size: 10] + [scores: true, order_by: :name, page_size: 9999] |> Apps.list_apps() |> Map.pop(:entries)