This commit is contained in:
sjk
2026-01-13 18:59:26 +08:00
commit 7feccf246d
56 changed files with 11596 additions and 0 deletions

26
.env.example Normal file
View File

@@ -0,0 +1,26 @@
# 环境标识development 或 production
ENV=development
# AdsPower配置
ADSPOWER_API_URL=http://127.0.0.1:50325
ADSPOWER_USER_ID=e5afd5a4cead5589247febbeabc39bcb
ADSPOWER_API_KEY=
# 服务配置
SERVER_HOST=127.0.0.1
SERVER_PORT=5000
# 点击策略配置
MIN_CLICK_COUNT=1
MAX_CLICK_COUNT=10
CLICK_INTERVAL_MINUTES=30
WORK_START_HOUR=9
WORK_END_HOUR=21
REPLY_WAIT_TIMEOUT=30
# 数据存储路径
DATA_DIR=./data
LOG_DIR=./logs
# 调试模式
DEBUG=True