import { Firestore } from '@google-cloud/firestore';
import { SecretManagerServiceClient } from '@google-cloud/secret-manager';
export const PORT = process.env.PORT || 8080;
export const PROJECT_ID = process.env.GCP_PROJECT || process.env.GOOGLE_CLOUD_PROJECT;
export const BASE_URL = process.env.BASE_URL!;
export const GOOGLE_SCOPES = [
'https://www.googleapis.com/auth/drive.file',
'https://www.googleapis.com/auth/drive',
'https://www.googleapis.com/auth/spreadsheets',
'https://www.googleapis.com/auth/documents',
'https://www.googleapis.com/auth/userinfo.email',
];
export const firestore = new Firestore();
export const secrets = new SecretManagerServiceClient();