add listenhost option (#28)
(cherry picked from commit 1b2f04af6af57b36e800903b943aa4e01023b341)
This commit is contained in:
parent
51ca4d0659
commit
e849ac7f66
@ -1,6 +1,9 @@
|
|||||||
# Whichever port you want to run this on
|
# Whichever port you want to run this on
|
||||||
FEEDGEN_PORT=3000
|
FEEDGEN_PORT=3000
|
||||||
|
|
||||||
|
# Change this to use a different bind address
|
||||||
|
FEEDGEN_LISTENHOST="localhost"
|
||||||
|
|
||||||
# Set to something like db.sqlite to store persistently
|
# Set to something like db.sqlite to store persistently
|
||||||
FEEDGEN_SQLITE_LOCATION=":memory:"
|
FEEDGEN_SQLITE_LOCATION=":memory:"
|
||||||
|
|
||||||
|
@ -9,6 +9,7 @@ export type AppContext = {
|
|||||||
|
|
||||||
export type Config = {
|
export type Config = {
|
||||||
port: number
|
port: number
|
||||||
|
listenhost: string
|
||||||
hostname: string
|
hostname: string
|
||||||
sqliteLocation: string
|
sqliteLocation: string
|
||||||
subscriptionEndpoint: string
|
subscriptionEndpoint: string
|
||||||
|
@ -8,6 +8,7 @@ const run = async () => {
|
|||||||
maybeStr(process.env.FEEDGEN_SERVICE_DID) ?? `did:web:${hostname}`
|
maybeStr(process.env.FEEDGEN_SERVICE_DID) ?? `did:web:${hostname}`
|
||||||
const server = FeedGenerator.create({
|
const server = FeedGenerator.create({
|
||||||
port: maybeInt(process.env.FEEDGEN_PORT) ?? 3000,
|
port: maybeInt(process.env.FEEDGEN_PORT) ?? 3000,
|
||||||
|
listenhost: maybeStr(process.env.FEEDGEN_LISTENHOST) ?? 'localhost',
|
||||||
sqliteLocation: maybeStr(process.env.FEEDGEN_SQLITE_LOCATION) ?? ':memory:',
|
sqliteLocation: maybeStr(process.env.FEEDGEN_SQLITE_LOCATION) ?? ':memory:',
|
||||||
subscriptionEndpoint:
|
subscriptionEndpoint:
|
||||||
maybeStr(process.env.FEEDGEN_SUBSCRIPTION_ENDPOINT) ??
|
maybeStr(process.env.FEEDGEN_SUBSCRIPTION_ENDPOINT) ??
|
||||||
@ -17,7 +18,7 @@ const run = async () => {
|
|||||||
})
|
})
|
||||||
await server.start()
|
await server.start()
|
||||||
console.log(
|
console.log(
|
||||||
`🤖 running feed generator at http://localhost:${server.cfg.port}`,
|
`🤖 running feed generator at http://${server.cfg.listenhost}:${server.cfg.port}`,
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -64,7 +64,7 @@ export class FeedGenerator {
|
|||||||
async start(): Promise<http.Server> {
|
async start(): Promise<http.Server> {
|
||||||
await migrateToLatest(this.db)
|
await migrateToLatest(this.db)
|
||||||
this.firehose.run()
|
this.firehose.run()
|
||||||
this.server = this.app.listen(this.cfg.port)
|
this.server = this.app.listen(this.cfg.port, this.cfg.listenhost)
|
||||||
await events.once(this.server, 'listening')
|
await events.once(this.server, 'listening')
|
||||||
return this.server
|
return this.server
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user