Loading

摘要: main.py from typing import Union from fastapi import FastAPI from pydantic import BaseModel from typing import Optional import os app = FastAPI() clas 阅读全文
posted @ 2023-03-28 15:55 小维江湖 阅读(161) 评论(0) 推荐(0) 编辑
摘要: python FastAPI 中可以使用的 entrypoint.sh 示例,其他语言写的代码也可以参考,思路类似。 #!/bin/bash set -e if [ ! -v PORT ]; then PORT="8000" fi if [ ! -v HOST ]; then HOST='0.0.0 阅读全文
posted @ 2023-03-28 15:19 小维江湖 阅读(301) 评论(0) 推荐(0) 编辑