Files
Mycontent/soul-admin/deploy.py

19 lines
453 B
Python
Raw Permalink 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全程宝塔面板 API上传 zip、解压、MvFile 切换 dist
与 soul-api/master.py 的 BT_PANEL_URL / BT_API_KEY 环境变量一致。
"""
from __future__ import print_function
import sys
from master import main as master_main
if __name__ == "__main__":
sys.exit(master_main(default_profile="dev"))