1import { fetchGamesCountPerDeploy } from './fetchGamesCountPerDeployAI.mts'3export { ingressAnnotationsH } from './baseCommon.mjs'5const gamesDbQs = 'gameshetzdb_qs'6export const dbQsCfg = {7 dbQsName: gamesDbQs,8}10export const deployHistoryStatsF = fetchGamesCountPerDeploy11export const deployHistoryStatsLabel = '#GAMES'13export const envConf = {14 dbSecrets: {15 db: gamesDbQs,16 },17 fromName: 'Games',18 exceptionsFromEmail: 'noreply@drawinggame.org',19 fromEmail: 'noreply@drawinggame.org',20}22export const svcPortNo = 301123export const testSvcPortNo = 1301124export const healthgqlTestPath = '/'25export const appPath = 'pt0/gamesapp'26export const nextBuildHeapMb = 4096