github-actions[bot] commited on
Commit
6737e78
·
1 Parent(s): 9c1cc33

Update from GitHub Actions

Browse files
Files changed (1) hide show
  1. main.py +13 -2
main.py CHANGED
@@ -11,8 +11,19 @@ import time
11
  from curl_cffi import requests
12
  from dotenv import load_dotenv
13
 
14
- # 加载.env文件
15
- load_dotenv()
 
 
 
 
 
 
 
 
 
 
 
16
 
17
  app = FastAPI(
18
  title="ScraperProxy",
 
11
  from curl_cffi import requests
12
  from dotenv import load_dotenv
13
 
14
+ # 加载多个位置的.env文件
15
+ def load_env_files():
16
+ # 优先尝试加载根目录下的.env
17
+ if os.path.exists('.env'):
18
+ load_dotenv('.env')
19
+
20
+ # 然后尝试加载 /root/deploy/.scraper.env
21
+ deploy_env_path = os.path.join('/root/deploy', '.scraper.env')
22
+ if os.path.exists(deploy_env_path):
23
+ load_dotenv(deploy_env_path)
24
+
25
+ # 执行环境变量加载
26
+ load_env_files()
27
 
28
  app = FastAPI(
29
  title="ScraperProxy",