CoolFace
Apppublic

sanket3280/code-execution

sourceHugging Faceupdated 10mo agoView on Hugging Face
0likes
.env.development83 linesDownload Raw Back to server
1# Code Execution Server - Development Environment2 3# Server Configuration4PORT=30005NODE_ENV=development6 7# MongoDB Connection8MONGODB_URI=mongodb+srv://traeairun:NLF6ROpnNqwViQuQ@codebattle.mycluit.mongodb.net/?retryWrites=true&w=majority&appName=codebattle9 10 11# Redis Configuration12REDIS_URL=redis://default:x5Nfi0xjFphjxxoOu8AXxJsC0mr84ijq@redis-17426.c9.us-east-1-4.ec2.redns.redis-cloud.com:1742613REDIS_HOST=redis-17426.c9.us-east-1-4.ec2.redns.redis-cloud.com14REDIS_PORT=1742615REDIS_PASSWORD=x5Nfi0xjFphjxxoOu8AXxJsC0mr84ijq16 17# Client URL (Localhost)18CLIENT_URL=https://codebattlefrontends.netlify.app19AUTH_CALLBACK_URL=https://codebattlefrontends.netlify.app20SERVER_PUBLIC_URL=https://limitations-jersey-substitute-snow.trycloudflare.com21 22 23 24 25# Email Service - Gmail SMTP26# How it works: Your app → Gmail SMTP (smtp.gmail.com:587) → Recipient27# EMAIL_USER: Your Gmail address28# EMAIL_PASS: Gmail App Password (16 characters, NOT your Gmail password)29# Get App Password: https://myaccount.google.com/apppasswords30EMAIL_USER=sj546400@gmail.com31EMAIL_PASS=nfqqfimunqpnngud32 33# Brevo (Production Email Service)34BREVO_EMAIL=sj546400@gmail.com35BREVO_API_KEY=xsmtpsib-55d47de74f253af385f9f5f878da1edb1d381e729a470f730788c0e78f45ca8b-f6dyXbfTQ5536POQ36 37 38LINKEDIN_CLIENT_ID=78rmbmgwesx6nm39LINKEDIN_CLIENT_SECRET=WPL_AP1.Fouad9A9LuGLmRhI.btZgBg==40 41 42 43# JWT Configuration44JWT_SECRET=dev_jwt_secret_change_in_production45JWT_EXPIRE=7d46 47# OAuth - Google48GOOGLE_CLIENT_ID=631894520627-ovcr05anckt1md2uejg67tkg3vb0nc0r.apps.googleusercontent.com49GOOGLE_CLIENT_SECRET=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50 51# OAuth - GitHub52GITHUB_CLIENT_ID=Ov23liOg0dhcu0CKgRF153GITHUB_CLIENT_SECRET=634b4bb7869df1ce0cceb5de66ecf5402d7097df54 55# OAuth - LinkedIn (Add your credentials here)56# Get credentials from: https://www.linkedin.com/developers/apps57# LINKEDIN_CLIENT_ID=your_linkedin_client_id58# LINKEDIN_CLIENT_SECRET=your_linkedin_client_secret59 60# HackerEarth API61CLIENT_SECRET=57d0119813f60d1a589a1d382fa2dca065c00e4f62CODE_EVAL_URL=https://api.hackerearth.com/v4/partner/code-evaluation/submissions/63 64# Docker Executor (set to true to use Docker instead of HackerEarth)65# Enabled with automatic fallback to HackerEarth if Docker fails66USE_DOCKER_EXECUTOR=true67 68 69USE_UNIFIED_EXECUTION=true70EXECUTION_STRATEGY=docker71ENABLE_FALLBACK=true72 73 74 75 76# Logging77LOG_LEVEL=warn78 79# Security80COOKIE_SECRET=dev_cookie_secret_change_in_production81 82 83