8 lines
252 B
Python
8 lines
252 B
Python
|
|
#!/usr/bin/env python3
|
||
|
|
# 添加 settings 行
|
||
|
|
|
||
|
|
with open("/app/app/config.py", "a") as f:
|
||
|
|
f.write("\n\n# 创建全局配置实例\n# 整个应用通过 from app.config import settings 使用同一个实例\nsettings = Settings()\n")
|
||
|
|
|
||
|
|
print("Done!")
|