diff --git a/src/index.ts b/src/index.ts index 3a7ebc3..a931d05 100644 --- a/src/index.ts +++ b/src/index.ts @@ -28,6 +28,11 @@ async function main() { // TODO: Migrate all logic over to this repository const apiBasedRepository = new ApiBasedRepository(); + const systemIds = ["263"]; + await Promise.all(systemIds.map(async (systemId) => { + await apiBasedRepository.seedCacheForSystemId(systemId); + })); + const { url } = await startStandaloneServer(server, { listen: { port: process.env.PORT ? parseInt(process.env.PORT) : 4000,