From 45096a113ccd2d54fbe71dfc4e66e90c11edbda3 Mon Sep 17 00:00:00 2001 From: hmt Date: Wed, 24 Jul 2024 12:10:19 +0200 Subject: [PATCH] Bugfix release v2.0.2 README --- README.md | 2 +- main.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index e689dac..b236cbb 100644 --- a/README.md +++ b/README.md @@ -67,7 +67,7 @@ Then create a `servers.json` file like this here: Now you are ready to start the script. Make sure to have an environment variable called `TINYSCALE_SECRET`: - TINYSCALE_SECRET=some_secret_string deno run --allow-net --allow-env https://deno.land/x/tinyscale@v2.0.0/main.ts + TINYSCALE_SECRET=some_secret_string deno run --allow-net --allow-env https://deno.land/x/tinyscale@v2.0.2/main.ts tinyscale will then run on port 8000 and you will have to set up your reverse proxy so that it can pick up requests. If you prefer a different port you can diff --git a/main.ts b/main.ts index 4720edb..b213993 100644 --- a/main.ts +++ b/main.ts @@ -7,7 +7,7 @@ import { red, green, yellow } from "@std/fmt/colors"; const SECRET = Deno.env.get("TINYSCALE_SECRET"); const _port = Deno.env.get("PORT"); const PORT = _port ? parseInt(_port) : undefined; -const VERSION = 'v2.0.1' +const VERSION = 'v2.0.2' if (SECRET === undefined) throw "No `TINYSCALE_SECRET` set. tinyscale will exit.";