- Added a new webhook integration for Feishu/Lark groups, allowing for custom bot notifications. - Refactored deployment scripts to unify the deployment process, improving maintainability and reducing redundancy. - Updated the experience index to include recent entries and improved documentation for various roles. Made-with: Cursor
18 lines
364 B
Python
18 lines
364 B
Python
#!/usr/bin/env python3
|
||
# -*- coding: utf-8 -*-
|
||
"""
|
||
兼容入口:默认走 soul-admin-dev 配置档。
|
||
|
||
实际部署逻辑复用 master.py,避免与正式环境脚本长期双份维护。
|
||
"""
|
||
|
||
from __future__ import print_function
|
||
|
||
import sys
|
||
|
||
from master import main as master_main
|
||
|
||
|
||
if __name__ == "__main__":
|
||
sys.exit(master_main(default_profile="dev"))
|