the statusphere demo reworked into a vite/react app in a monorepo

Remove unused variables from env (#12)

authored by mkizka.dev and committed by

GitHub 9cd25e3c ad399db5

+1 -3
+1 -3
src/lib/env.ts
··· 1 1 import dotenv from 'dotenv' 2 - import { cleanEnv, host, num, port, str, testOnly } from 'envalid' 2 + import { cleanEnv, host, port, str, testOnly } from 'envalid' 3 3 4 4 dotenv.config() 5 5 ··· 13 13 PUBLIC_URL: str({}), 14 14 DB_PATH: str({ devDefault: ':memory:' }), 15 15 COOKIE_SECRET: str({ devDefault: '00000000000000000000000000000000' }), 16 - COMMON_RATE_LIMIT_MAX_REQUESTS: num({ devDefault: testOnly(1000) }), 17 - COMMON_RATE_LIMIT_WINDOW_MS: num({ devDefault: testOnly(1000) }), 18 16 })