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) => {