File size: 551 Bytes
5d05d04 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | NODE_ENV=development
PORT=4000
DATABASE_URL=postgresql://user:pass@localhost:5432/hr_optimizer
REDIS_URL=redis://localhost:6379
JWT_SECRET=change_this_to_a_32_char_random_string_
JWT_REFRESH_SECRET=change_this_to_another_32_char_random_
JWT_ACCESS_EXPIRY=15m
JWT_REFRESH_EXPIRY=7d
AI_SERVICE_URL=http://localhost:8000
AI_SERVICE_KEY=internal-dev-key
AWS_REGION=us-east-1
S3_BUCKET_NAME=hr-resumes
S3_ENDPOINT=http://localhost:9000
OPENAI_API_KEY=sk-your-openai-key
GOOGLE_CLIENT_ID=your-google-client-id
GOOGLE_CLIENT_SECRET=your-google-client-secret
|