/** * This file documents the environment variables required by the authentication system. * In a real project, you would create a .env file with these values. * * Example .env file: * * # A random string used to hash tokens, sign cookies and generate cryptographic keys. * AUTH_SECRET="your-super-secret-string" * * # Google * GOOGLE_CLIENT_ID="your-google-client-id" * GOOGLE_CLIENT_SECRET="your-google-client-secret" * * # GitHub * GITHUB_CLIENT_ID="your-github-client-id" * GITHUB_CLIENT_SECRET="your-github-client-secret" * * # Email (for Magic Links) * EMAIL_SERVER_USER="your-smtp-user" * EMAIL_SERVER_PASSWORD="your-smtp-password" * EMAIL_SERVER_HOST="smtp.example.com" * EMAIL_SERVER_PORT="587" * EMAIL_FROM="noreply@example.com" * */ export const placeholder = '';