-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathtest.env
More file actions
28 lines (23 loc) · 758 Bytes
/
test.env
File metadata and controls
28 lines (23 loc) · 758 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# Test Environment Configuration
# Database Configuration - Using SQLite for testing
AUTH_DATABASE_TYPE=sqlite
AUTH_DATABASE_URL=
AUTH_SQLITE_PATH=:memory:
# PostgreSQL settings (only used if AUTH_DATABASE_TYPE=postgresql)
#AUTH_POSTGRESQL_URL=postgresql://auth_user:auth_pass123@localhost:5432/auth_db_test
# JWT Configuration
AUTH_JWT_SECRET_KEY=test_secret_key_for_testing_only
AUTH_JWT_ALGORITHM=HS256
AUTH_JWT_ACCESS_TOKEN_EXPIRE_MINUTES=1440
AUTH_JWT_REFRESH_TOKEN_EXPIRE_DAYS=7
# Security & CORS
AUTH_ALLOW_CORS=true
AUTH_CORS_ORIGINS=*
AUTH_ENABLE_AUDIT_LOGGING=true
# Server Configuration
AUTH_SERVER_HOST=0.0.0.0
AUTH_SERVER_PORT=4000
AUTH_DEBUG_MODE=false
# Encryption (disabled for testing)
AUTH_ENABLE_ENCRYPTION=false
AUTH_ENCRYPTION_KEY=