Files
Mycontent/soul-admin/deploy.py
乘风 0ce86645b1 feat: enhance deployment scripts and experience index
- 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
2026-04-15 15:23:50 +08:00

18 lines
364 B
Python
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#!/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"))