Upload apps/api/.env.example
Browse files- apps/api/.env.example +16 -0
apps/api/.env.example
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
NODE_ENV=development
|
| 2 |
+
PORT=4000
|
| 3 |
+
DATABASE_URL=postgresql://user:pass@localhost:5432/hr_optimizer
|
| 4 |
+
REDIS_URL=redis://localhost:6379
|
| 5 |
+
JWT_SECRET=change_this_to_a_32_char_random_string_
|
| 6 |
+
JWT_REFRESH_SECRET=change_this_to_another_32_char_random_
|
| 7 |
+
JWT_ACCESS_EXPIRY=15m
|
| 8 |
+
JWT_REFRESH_EXPIRY=7d
|
| 9 |
+
AI_SERVICE_URL=http://localhost:8000
|
| 10 |
+
AI_SERVICE_KEY=internal-dev-key
|
| 11 |
+
AWS_REGION=us-east-1
|
| 12 |
+
S3_BUCKET_NAME=hr-resumes
|
| 13 |
+
S3_ENDPOINT=http://localhost:9000
|
| 14 |
+
OPENAI_API_KEY=sk-your-openai-key
|
| 15 |
+
GOOGLE_CLIENT_ID=your-google-client-id
|
| 16 |
+
GOOGLE_CLIENT_SECRET=your-google-client-secret
|