Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
gromdimon committed Aug 22, 2023
1 parent ec53af6 commit d347a01
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion backend/Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ pydantic = "*"
uvicorn = "*"
python-dotenv = "*"
httpx = "*"
pytest-asyncio = "*"
requests-mock = "*"

[dev-packages]
Expand All @@ -18,6 +17,7 @@ flake8 = "*"
isort = "*"
mypy = "*"
pytest = "*"
pytest-asyncio = "*"
pytest-cov = "*"
pytest-httpx = "*"
sphinx = "*"
Expand Down
3 changes: 1 addition & 2 deletions backend/app/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,8 +83,7 @@ async def reverse_proxy(request: Request) -> Response:

# Routes

#: pragma: no cover
if SERVE_FRONTEND:
if SERVE_FRONTEND: #: pragma: no cover
print(f"SERVE_FRONTEND = {SERVE_FRONTEND}", file=sys.stderr)
app.mount("/ui", StaticFiles(directory=SERVE_FRONTEND), name="app")

Expand Down

0 comments on commit d347a01

Please sign in to comment.