this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

remove fly.io

alice e81c78b3 f6ae73db

+2 -14
+1
.gitignore
··· 128 128 .yarn/build-state.yml 129 129 .yarn/install-state.gz 130 130 .pnp.* 131 + .vercel
-13
fly.toml
··· 1 - # fly.toml app configuration file generated for feeds on 2023-05-23T19:11:41+01:00 2 - # 3 - # See https://fly.io/docs/reference/configuration/ for information about how to use this file. 4 - # 5 - 6 - app = "feeds" 7 - primary_region = "lhr" 8 - 9 - [http_service] 10 - internal_port = 3000 11 - force_https = true 12 - auto_stop_machines = false 13 - auto_start_machines = false
+1 -1
src/index.ts
··· 17 17 }) 18 18 await server.start() 19 19 console.log( 20 - `🤖 running feed generator at http://${hostname}:${server.cfg.port}`, 20 + `🤖 running feed generator at http://${server.cfg.hostname}:${server.cfg.port}`, 21 21 ) 22 22 } 23 23