mirror of
https://github.com/PaiGramTeam/PamGram.git
synced 2024-11-16 12:02:16 +00:00
059bcd5e70
* 🔧 使用 dotenv 重构 config
默认配置从 config.json 移动到 config.py 中。如果要覆盖默认配置,在根目录创建
.env 文件按照 .env.example 的例子编辑。
这个方案的优点是:
* 支持写注释
* 以后如果新增配置项,如果用默认值就可以,不需要修改 .env 文件
* 如果通过 serverless、docker 或者 k8s 部署,方便不用修改文件,直接注入环境变量
修改配置
38 lines
334 B
Plaintext
38 lines
334 B
Plaintext
### Code Editor ###
|
|
|
|
# VSCode
|
|
.vscode/
|
|
*.code-workspace
|
|
.history
|
|
.ionide
|
|
|
|
# Pycharm
|
|
*.iws
|
|
.idea/
|
|
out/
|
|
|
|
### Python ###
|
|
|
|
# Environments
|
|
env/
|
|
venv/
|
|
cache/
|
|
|
|
# Byte-compiled / optimized / DLL files
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.pyo
|
|
*.pyc
|
|
|
|
### Customize ###
|
|
|
|
**_test.html
|
|
test_**.html
|
|
logs/
|
|
/resources/*/*/test/
|
|
|
|
### DotEnv ###
|
|
.env
|
|
|