27 lines
609 B
Bash
27 lines
609 B
Bash
# Server Environment - Test
|
|
NODE_ENV=test
|
|
PORT=3001
|
|
HOST=127.0.0.1
|
|
LOG_LEVEL=silent
|
|
|
|
# Database (PostgreSQL Test Container/DB)
|
|
DATABASE_URL=postgresql://postgres:postgres@localhost:5432/supporthub_test_db?schema=public
|
|
|
|
# Redis Test Container/DB
|
|
REDIS_HOST=localhost
|
|
REDIS_PORT=6379
|
|
REDIS_PASSWORD=
|
|
|
|
# Authentication Test Keys
|
|
JWT_SECRET=super-secret-test-jwt-key-min-32-characters
|
|
|
|
# AWS S3 Test Storage
|
|
AWS_REGION=us-east-1
|
|
AWS_S3_BUCKET=supporthub-test-bucket
|
|
AWS_ACCESS_KEY_ID=test-aws-access-key-id
|
|
AWS_SECRET_ACCESS_KEY=test-aws-secret-access-key
|
|
AWS_S3_ENDPOINT=
|
|
|
|
# Security & CORS Test
|
|
CORS_ORIGINS=*
|