Skip to content

Commit

Permalink
+
Browse files Browse the repository at this point in the history
  • Loading branch information
BlowaterNostr committed Mar 31, 2024
1 parent b2e3b4e commit 4b6f76e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions deploy/example.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ const relay = await run({
},
password: Deno.env.get("relayed_pw"),
});
if(relay instanceof Error) {
console.error(relay)
if (relay instanceof Error) {
console.error(relay);
}
3 changes: 2 additions & 1 deletion main.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,8 @@ export async function run(args: {
{
port,
onListen: ({ hostname, port }) => {
console.log(`☁ Started on http://${hostname}:${port}`);
console.log(`☁ Relay server started on ws://${hostname}:${port}`);
console.log(`☁ Relay admin GraphQL started on http://${hostname}:${port}/api`);
resolve_hostname(hostname);
},
},
Expand Down

0 comments on commit 4b6f76e

Please sign in to comment.