Fix app view url

This commit is contained in:
Eric Bailey
2023-12-05 10:07:40 -06:00
parent a4c6a25586
commit 991411f3e6
+3
View File
@@ -59,6 +59,7 @@ export async function createServer(
): Promise<TestPDS> {
const port = await getPort()
const port2 = await getPort(port + 1)
const port3 = await getPort(port2 + 1)
const pdsUrl = `http://localhost:${port}`
const id = ids.next()
@@ -71,6 +72,8 @@ export async function createServer(
},
bsky: {
dbPostgresSchema: `bsky_${id}`,
port: port3,
publicUrl: 'http://localhost:2584',
},
plc: {port: port2},
})