We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1f49059 commit 032af67Copy full SHA for 032af67
Dockerfile
@@ -21,4 +21,4 @@ COPY . .
21
# Install dependencies
22
RUN pip install --no-cache-dir --upgrade -r /app/requirements.txt
23
24
-CMD ["python", "template_python/core.py"]
+CMD ["python", "template_fastapi/core.py"]
template_python/__init__.py renamed to template_fastapi/__init__.py
template_python/core.py renamed to template_fastapi/core.py
tests/test_core.py
@@ -3,7 +3,7 @@
3
4
import pytest
5
6
-from template_python.core import hello_world
+from template_fastapi.core import hello_world
7
8
logger = getLogger(__name__)
9
0 commit comments