From d1de8c30f3902a127eab19b6778d242777170c5b Mon Sep 17 00:00:00 2001 From: Anton-4 <17049058+Anton-4@users.noreply.github.com> Date: Thu, 28 Nov 2024 19:42:12 +0100 Subject: [PATCH] 0.10.0 readme changes --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 3b3b5d4..6230222 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ :book: docs: [main branch](https://roc-lang.github.io/basic-webserver/) -:eyes: examples: [0.8](https://github.com/roc-lang/basic-webserver/tree/0.8.0/examples), [0.9](https://github.com/roc-lang/basic-webserver/tree/0.9.0/examples) +:eyes: examples: [0.10](https://github.com/roc-lang/basic-webserver/tree/0.10.0/examples), [0.9](https://github.com/roc-lang/basic-webserver/tree/0.9.0/examples) :warning: On linux `--linker=legacy` is necessary for this package because of [this Roc issue](https://github.com/roc-lang/roc/issues/3609). @@ -15,7 +15,7 @@ A webserver [platform](https://github.com/roc-lang/roc/wiki/Roc-concepts-explain Run this example server with `$ roc helloweb.roc` (on linux, add `--linker=legacy`) and go to `http://localhost:8000` in your browser. You can change the port (8000) and the host (localhost) by setting the environment variables ROC_BASIC_WEBSERVER_PORT and ROC_BASIC_WEBSERVER_HOST. ```roc -app [Model, server] { pf: platform "https://github.com/roc-lang/basic-webserver/releases/download/0.9.0/taU2jQuBf-wB8EJb0hAkrYLYOGacUU5Y9reiHG45IY4.tar.br" } +app [Model, server] { pf: platform "REPLACE WITH LINK: SEE RELEASES 0.10.0>Assets" } import pf.Stdout import pf.Http exposing [Request, Response]