perf:启动项目增加IP和端口选项
This commit is contained in:
parent
9b0918ecf4
commit
152f726cf5
@ -11,7 +11,7 @@ from fastapi.security import OAuth2PasswordBearer
|
|||||||
"""
|
"""
|
||||||
系统版本
|
系统版本
|
||||||
"""
|
"""
|
||||||
VERSION = "1.8.0"
|
VERSION = "1.8.1"
|
||||||
|
|
||||||
"""安全警告: 不要在生产中打开调试运行!"""
|
"""安全警告: 不要在生产中打开调试运行!"""
|
||||||
DEBUG = True
|
DEBUG = True
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
# @version : 1.0
|
# @version : 1.0
|
||||||
# @Creaet Time : 2021/10/19 15:47
|
# @Create Time : 2021/10/19 15:47
|
||||||
# @File : main.py
|
# @File : main.py
|
||||||
# @IDE : PyCharm
|
# @IDE : PyCharm
|
||||||
# @desc : 主程序入口
|
# @desc : 主程序入口
|
||||||
@ -25,7 +25,6 @@ from scripts.create_app.main import CreateApp
|
|||||||
from core.event import lifespan
|
from core.event import lifespan
|
||||||
from utils.tools import import_modules
|
from utils.tools import import_modules
|
||||||
|
|
||||||
|
|
||||||
shell_app = typer.Typer()
|
shell_app = typer.Typer()
|
||||||
|
|
||||||
|
|
||||||
@ -67,7 +66,10 @@ def create_app():
|
|||||||
|
|
||||||
|
|
||||||
@shell_app.command()
|
@shell_app.command()
|
||||||
def run(host: str=typer.Option(default='0.0.0.0', help='监听主机IP,默认开放给本网络所有主机'), port: int=typer.Option(default=9000, help='监听端口')):
|
def run(
|
||||||
|
host: str = typer.Option(default='0.0.0.0', help='监听主机IP,默认开放给本网络所有主机'),
|
||||||
|
port: int = typer.Option(default=9000, help='监听端口')
|
||||||
|
):
|
||||||
"""
|
"""
|
||||||
启动项目
|
启动项目
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user