about summary refs log tree commit diff
path: root/scripts
diff options
context:
space:
mode:
authorPaul Frazee <pfrazee@gmail.com>2022-09-22 19:28:25 -0500
committerPaul Frazee <pfrazee@gmail.com>2022-09-22 19:28:25 -0500
commitaabde2b401e725090232f203f23152ee1d50d566 (patch)
tree6c1da614bf7f1ce78b00dde5846338d42fc29012 /scripts
parent5193a5b48e66db37e6a27ebcec13b6312ae08799 (diff)
downloadvoidsky-aabde2b401e725090232f203f23152ee1d50d566.tar.zst
Replace mock-api with real api
Diffstat (limited to 'scripts')
-rw-r--r--scripts/testing-server.mjs36
1 files changed, 0 insertions, 36 deletions
diff --git a/scripts/testing-server.mjs b/scripts/testing-server.mjs
deleted file mode 100644
index f3c68e535..000000000
--- a/scripts/testing-server.mjs
+++ /dev/null
@@ -1,36 +0,0 @@
-import {IpldStore} from '@adxp/common'
-import PDSServer from '@adxp/server/dist/server.js'
-import PDSDatabase from '@adxp/server/dist/db/index.js'
-import WSRelayServer from '@adxp/ws-relay/dist/index.js'
-import AuthLobbyServer from '@adxp/auth-lobby'
-
-const PDS_PORT = 2583
-const AUTH_LOBBY1_PORT = 3001
-const AUTH_LOBBY2_PORT = 3002
-const WSR_PORT = 3005
-
-async function start() {
-  console.log('Initializing...')
-
-  const db = PDSDatabase.memory()
-  const serverBlockstore = IpldStore.createInMemory()
-  await db.dropTables()
-  await db.createTables()
-  PDSServer(serverBlockstore, db, PDS_PORT)
-
-  init(AuthLobbyServer, AUTH_LOBBY1_PORT, 'Auth lobby')
-
-  if (process.argv.includes('--relay')) {
-    init(AuthLobbyServer, AUTH_LOBBY2_PORT, 'Auth lobby 2')
-    init(WSRelayServer, WSR_PORT, 'Relay server')
-  } else {
-    console.log('Include --relay to start the WS Relay and second auth lobby')
-  }
-}
-start()
-
-function init(fn, port, name) {
-  const s = fn(port)
-  s.on('listening', () => console.log(`✔ ${name} running on port ${port}`))
-  s.on('error', e => console.log(`${name} failed to start:`, e))
-}