SaaS_Backend / .env
ChiragPatankar's picture
Upload 33 files
1cf0854 verified
raw
history blame contribute delete
748 Bytes
# Server Configuration
PORT=3001
NODE_ENV=development
# JWT Secret (generate a secure random string)
JWT_SECRET=your-super-secure-jwt-secret-key-here-min-32-chars
# Google OAuth
GOOGLE_CLIENT_ID=your-google-client-id.apps.googleusercontent.com
GOOGLE_CLIENT_SECRET=your-google-client-secret
# Database
DATABASE_URL=./database.sqlite
# MCP Server Configuration
MCP_SERVER_URL=https://gemini-mcp-server-production.up.railway.app
MCP_AUTH_TOKEN=test-token
# Email Configuration (optional - for notifications)
SMTP_HOST=smtp.gmail.com
SMTP_PORT=587
SMTP_USER=your-email@gmail.com
SMTP_PASS=your-app-password
# Frontend URL
FRONTEND_URL=http://localhost:5173
# File Upload
MAX_FILE_SIZE=10485760
UPLOAD_DIR=./uploads