* refactor: pass redis storage to throttler guard * chore: upgrade throttler to latest * feat: ApiKey RateLimit table * chore: upgrade redis storage throttler * feat: rate limit by api key * refactor: on delete api key cascade rate limit * fix: permissions guard work with oauth credentials * chore: set rate limit in env * tests: throttler * feat: include rate limit name in response * fix: correctly handle multiple rate limits * chore: remove unused import * delete migrations * chore: prisma migration * doc * dummy * fix: permissions guard unit test * refactor: remove route specific @Throttles * fix: permissions guard
35 lines
1.4 KiB
TypeScript
35 lines
1.4 KiB
TypeScript
import type { Environment } from "@/env";
|
|
|
|
const env: Partial<Omit<Environment, "NODE_ENV">> = {
|
|
API_URL: "http://localhost",
|
|
API_PORT: "5555",
|
|
DATABASE_URL: "postgresql://postgres:@localhost:5450/calendso",
|
|
DATABASE_READ_URL: "postgresql://postgres:@localhost:5450/calendso",
|
|
DATABASE_WRITE_URL: "postgresql://postgres:@localhost:5450/calendso",
|
|
NEXTAUTH_SECRET: "XF+Hws3A5g2eyWA5uGYYVJ74X+wrCWJ8oWo6kAfU6O8=",
|
|
JWT_SECRET: "XF+Hws3A5g2eyWA5uGYYVJ74X+wrCWJ8oWo6kAfU6O8=",
|
|
LOG_LEVEL: "trace",
|
|
REDIS_URL: "redis://localhost:6379",
|
|
STRIPE_API_KEY: "sk_test_51J4",
|
|
STRIPE_WEBHOOK_SECRET: "whsec_51J4",
|
|
IS_E2E: true,
|
|
API_KEY_PREFIX: "cal_test_",
|
|
GET_LICENSE_KEY_URL: " https://console.cal.com/api/license",
|
|
CALCOM_LICENSE_KEY: "c4234812-12ab-42s6-a1e3-55bedd4a5bb7",
|
|
RATE_LIMIT_DEFAULT_TTL_MS: 60000,
|
|
// note(Lauris): setting high limit so that e2e tests themselves are not rate limited
|
|
RATE_LIMIT_DEFAULT_LIMIT: 10000,
|
|
RATE_LIMIT_DEFAULT_BLOCK_DURATION_MS: 60000,
|
|
};
|
|
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
|
|
// @ts-ignore
|
|
process.env = {
|
|
...env,
|
|
...process.env,
|
|
// fake keys for testing
|
|
NEXT_PUBLIC_VAPID_PUBLIC_KEY:
|
|
"BIds0AQJ96xGBjTSMHTOqLBLutQE7Lu32KKdgSdy7A2cS4mKI2cgb3iGkhDJa5Siy-stezyuPm8qpbhmNxdNHMw",
|
|
VAPID_PRIVATE_KEY: "6cJtkASCar5sZWguIAW7OjvyixpBw9p8zL8WDDwk9Jk",
|
|
CALENDSO_ENCRYPTION_KEY: "22gfxhWUlcKliUeXcu8xNah2+HP/29ZX",
|
|
};
|