From 9c4522dcebb00e4d3e61311ec89d9dfbd51a6082 Mon Sep 17 00:00:00 2001 From: 3wc <3wc@doesthisthing.work> Date: Tue, 3 May 2022 18:57:37 +0100 Subject: [PATCH] Switch URL, upd8 README --- README.md | 2 +- src/Pages/Top.elm | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 5998eeb..511f0ab 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # recipes.coopcloud.tech -> WIP! https://dev.apps.coopcloud.tech is the current live site +> https://recipes.coopcloud.tech is the current live site [![Build Status](https://drone.autonomic.zone/api/badges/coop-cloud/recipes.coopcloud.tech/status.svg?ref=refs/heads/main)](https://drone.autonomic.zone/coop-cloud/recipes.coopcloud.tech) diff --git a/src/Pages/Top.elm b/src/Pages/Top.elm index 214c8e5..77f9bb3 100644 --- a/src/Pages/Top.elm +++ b/src/Pages/Top.elm @@ -378,8 +378,8 @@ viewApps model = loadApps : Cmd Msg loadApps = - Http.get - { url = "https://apps.coopcloud.tech/" + Http.request + { url = "https://recipes.coopcloud.tech/recipes.json" , expect = Http.expectJson GotApps appListDecoder }