From 2a13e9e97cfa56525087e8e2f5eab2d6bc3946cd Mon Sep 17 00:00:00 2001 From: dholms Date: Wed, 10 May 2023 23:03:54 -0500 Subject: [PATCH] tidy --- .gitignore | 1 + src/index.ts | 4 +++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 37d7e73..5999717 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ node_modules .env +test.sqlite diff --git a/src/index.ts b/src/index.ts index 36a578b..5974b40 100644 --- a/src/index.ts +++ b/src/index.ts @@ -9,7 +9,9 @@ const run = async () => { subscriptionEndpoint: maybeStr(process.env.FEEDGEN_SUBSCRIPTION_ENDPOINT), }) await server.start() - console.log(`🤖 running feed generator at localhost:${server.cfg.port}`) + console.log( + `🤖 running feed generator at http://localhost:${server.cfg.port}`, + ) } const maybeStr = (val?: string) => {