File tree 3 files changed +4
-41
lines changed
3 files changed +4
-41
lines changed Original file line number Diff line number Diff line change @@ -17,4 +17,4 @@ RUN uv sync --frozen --no-install-project
17
17
RUN uv sync --frozen
18
18
19
19
# Command to run the app when the container starts
20
- CMD ["uv" , "run" , "test_main .py" ]
20
+ CMD ["uv" , "run" , "main .py" ]
Original file line number Diff line number Diff line change 1
1
from fastapi import FastAPI
2
2
from fastapi .responses import RedirectResponse
3
- from src . routers .health import health_router
4
- from src . routers .mtcars import data_output
3
+ from routers .health import health_router
4
+ from routers .mtcars import data_output
5
5
import uvicorn
6
6
import tomllib
7
7
20
20
# Description of API defined in docs/documentation.py for ease of reading
21
21
description = description ,
22
22
summary = "This project is a proof-of-concept (POC) web API built using the FastAPI library." ,
23
- version = version ,
23
+ version = "0.0.1" ,
24
24
contact = {
25
25
"name" : "RMI" ,
26
26
"url" : "https://github.com/RMI" ,
Load Diff This file was deleted.
You can’t perform that action at this time.
1 commit comments
github-actions[bot] commentedon Mar 19, 2025
Coverage Report