次のようにファイルtest.html
を提供する単純な FastAPI アプリケーションがあります。app/main.py
@app.get('/')
def index():
return FileResponse('static/test.html')
ディレクトリ構造は次のようになります。
app/main.py
app/static/test.html
app/
これを変更して、とstatic/
が兄弟である変更されたディレクトリ構造で動作するようにすることはできますか?
試してみreturn FileResponse('../static/test.html')
ましたが、今のところうまくいきません。結果のエラーは、「RuntimeError: File at path ../static/test.html が存在しません」です。