mirror of
https://gitee.com/270580156/weiyu.git
synced 2026-04-21 17:40:15 +00:00
19 lines
902 B
Bash
19 lines
902 B
Bash
#!/bin/sh
|
||
###
|
||
# @Author: jackning 270580156@qq.com
|
||
# @Date: 2024-08-31 13:57:26
|
||
# @LastEditors: jackning 270580156@qq.com
|
||
# @LastEditTime: 2024-10-14 10:28:06
|
||
# @Description: bytedesk.com https://github.com/Bytedesk/bytedesk
|
||
# Please be aware of the BSL license restrictions before installing Bytedesk IM –
|
||
# selling, reselling, or hosting Bytedesk IM as a service is a breach of the terms and automatically terminates your rights under the license.
|
||
# 仅支持企业内部员工自用,严禁私自用于销售、二次销售或者部署SaaS方式销售
|
||
# Business Source License 1.1: https://github.com/Bytedesk/bytedesk/blob/main/LICENSE
|
||
# contact: 270580156@qq.com
|
||
# 技术/商务联系:270580156@qq.com
|
||
# Copyright (c) 2024 by bytedesk.com, All Rights Reserved.
|
||
###
|
||
# 添加权限 chmod +x start.sh
|
||
source .venv/bin/activate
|
||
nohup python main.py > output.log 2>&1 &
|