You've already forked agentic-coding-workflow
14 lines
393 B
Bash
14 lines
393 B
Bash
APP_ENV=development
|
|
APP_HTTP_ADDR=:8080
|
|
APP_DATA_DIR=./data
|
|
|
|
# Postgres
|
|
APP_DB_DSN=postgres://acw:acw@localhost:5432/acw?sslmode=disable
|
|
|
|
# Encryption master key(32 字节 hex 编码 = 64 字符)
|
|
APP_MASTER_KEY=00112233445566778899aabbccddeeff00112233445566778899aabbccddeeff
|
|
|
|
# 首次启动管理员账号种子
|
|
APP_BOOTSTRAP_ADMIN_EMAIL=admin@local
|
|
APP_BOOTSTRAP_ADMIN_PASSWORD=changeme
|