Remove test environment file with credentials

Delete .env.test which contained hardcoded credentials. Environment should be configured via .env or environment variables.
This commit is contained in:
2026-01-31 11:46:07 -05:00
parent aa362a8c7c
commit 36b54907d1
-25
View File
@@ -1,25 +0,0 @@
# Test environment configuration
# WARNING: This configuration disables security features for testing only
# Never use these settings in production
# Database configuration
DBPASS=027b61803f1d6d1873b934e8
DATABASE_HOST=localhost
DATABASE_PORT=5432
DATABASE_USER=postgres
DATABASE_PASSWORD=027b61803f1d6d1873b934e8
DATABASE_NAME=ebookdb
# JWT configuration
JWT_SECRET=f3b6693578fdbd0671adb5c9971e1f8b
# Server configuration
SERVER_PORT=8080
# Upload path
UPLOAD_PATH=./uploads
# Test configuration (for integration testing)
TEST_MODE=true
RATE_LIMIT_ENABLED=false
REQUESTS_PER_MINUTE=1000