This commit is contained in:
dholms 2023-05-10 23:03:54 -05:00
parent 9eb71863b3
commit 2a13e9e97c
2 changed files with 4 additions and 1 deletions

1
.gitignore vendored
View File

@ -1,2 +1,3 @@
node_modules
.env
test.sqlite

View File

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