Skip to content

Commit

Permalink
Bugfix release v2.0.2 README
Browse files Browse the repository at this point in the history
  • Loading branch information
hmt committed Jul 24, 2024
1 parent 24f2a06 commit 45096a1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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.";
Expand Down

0 comments on commit 45096a1

Please sign in to comment.