-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env
More file actions
20 lines (16 loc) · 917 Bytes
/
.env
File metadata and controls
20 lines (16 loc) · 917 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# Django System Config
DJANGO_SECRET_KEY=django-insecure-enterprise-key-99887766
DEBUG=True
ALLOWED_HOSTS=localhost,127.0.0.1
# Management Database — SQL Server (Windows Authentication)
# Named instance: no fixed port needed (resolved via SQL Server Browser service)
DB_NAME=QueryBench
DB_HOST=localhost\SQLEXPRESS
# DB_USER and DB_PASSWORD are intentionally omitted → uses Windows Auth (Trusted_Connection=yes)
# Evaluation Target Database — the DB participants run queries against (optional)
# ASSESSMENT_DB_PRIMARY_CONN=Driver={ODBC Driver 17 for SQL Server};Server=localhost\SQLEXPRESS;Database=AssessmentDB;Trusted_Connection=yes;
QUERY_TIMEOUT_SECONDS=5
MAX_RESULT_ROWS=5000
# Fernet key for encrypting DB passwords at rest.
# Generate with: python -c "from cryptography.fernet import Fernet; print(Fernet.generate_key().decode())"
DB_FIELD_ENCRYPTION_KEY=jW-fUBTaOz82m7Cqnz2HyHJxwfjZZGEnzgrqIo2I80M=