* feat: list managed users with apiv2 api * refactor: isPending -> isLoading * Revert "refactor: isPending -> isLoading" This reverts commit dc2108e05508070185d57633346f3c532458e2a8. --------- Co-authored-by: supalarry <laurisskraucis@gmail.com>
18 lines
576 B
TypeScript
18 lines
576 B
TypeScript
import type { Environment } from "@/env";
|
|
|
|
const env: Partial<Omit<Environment, "NODE_ENV">> = {
|
|
API_PORT: "5555",
|
|
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:9199",
|
|
};
|
|
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
|
|
// @ts-ignore
|
|
process.env = {
|
|
...env,
|
|
...process.env,
|
|
};
|