11 lines
304 B
Bash
11 lines
304 B
Bash
# ========================================
|
|
# 阿尔法研究 — 环境变量配置模板
|
|
# 复制此文件为 .env 并填入真实值
|
|
# ========================================
|
|
|
|
# PostgreSQL 数据库连接
|
|
DB_HOST=localhost
|
|
DB_PORT=12345
|
|
DB_NAME=quant_db
|
|
DB_USER=postgres
|
|
DB_PASSWORD=your_password_here |