fastify-auth-starter
Version:
Scaffold a Fastify + Prisma + Auth backend app
27 lines (25 loc) • 628 B
TypeScript
declare global {
namespace NodeJS {
interface ProcessEnv {
FRONTEND_APP_HOST_URL: string;
FRONTEND_PORT: string;
FRONTEND_PORT: string;
BACKEND_API_URL: string;
ENVIRONMENT: string;
POSTGRES_USER: string;
POSTGRES_PASSWORD: string;
POSTGRES_DB: string;
DATABASE_URL: string;
SENDGRID_API_KEY: string;
DEFAULT_FROM: string;
COOKIE_SECRET: string;
JWT_SECRET: string;
AWS_REGION: string;
AWS_ACCESS_KEY_ID: string;
AWS_SECRET_ACCESS_KEY: string;
AWS_S3_BUCKET_NAME: string;
LOG_LEVEL: string;
}
}
}
export {}