Initial commit

This commit is contained in:
doujiang
2026-03-21 23:00:03 +08:00
commit 8f51c3d378
92 changed files with 28858 additions and 0 deletions

19
.env.example Normal file
View File

@@ -0,0 +1,19 @@
# OpenAI 自动注册系统 - 环境变量配置示例
# 复制此文件为 .env 并填写对应值
# ── Web UI 监听地址 ──────────────────────────────────────────
# 监听主机(默认 0.0.0.0
# APP_HOST=0.0.0.0
# 监听端口(默认 8000
# APP_PORT=8000
# Web UI 访问密钥(默认 admin123强烈建议修改
# APP_ACCESS_PASSWORD=your_secret_password
# ── 数据库 ───────────────────────────────────────────────────
# 本地 SQLite默认无需配置
# APP_DATABASE_URL=data/database.db
# 远程 PostgreSQL优先
# APP_DATABASE_URL=postgresql://user:password@host:5432/dbname